Skip to content

Commit

Permalink
Change version
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagobustamante committed Apr 30, 2016
1 parent 590f828 commit 25483fc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ It can be used on browser or on node.js server code.
## Installation

```bash
node install typescript-ioc
npm install typescript-ioc
```

## Basic Usage
Expand Down Expand Up @@ -186,7 +186,8 @@ class ProgrammerDAO extends PersonDAO {
So, everywhere you inject a PersonDAO will receive a ProgrammerDAO instance instead. However, is still possible to create PersonDAO instances through its constructor, like:

```typescript
// a personDAO instance will be returned, with its dependecies resolved by container
// a personDAO instance will be returned,
// with its dependecies resolved by container
let personDAO: PersonDAO = new PersonDAO();
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "typescript-ioc",
"version": "0.1.0",
"version": "0.1.1",
"description": "A Lightweight annotation-based dependency injection container for typescript.",
"author": "Thiago da Rosa de Bustamante <[email protected]>",
"dependencies": {
Expand Down

0 comments on commit 25483fc

Please sign in to comment.