Skip to content

Commit

Permalink
Merge pull request #132 from remojansen/master
Browse files Browse the repository at this point in the history
fixes #131
  • Loading branch information
remojansen committed Mar 18, 2016
2 parents 88300c0 + 94380f2 commit 41816fd
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
14 changes: 12 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,22 @@
$ git clone https://github.com/YOUR_USERNAME/InversifyJS.git
```

2 - Install npm dependencies:
2 - Install typings:
```
$ npm install -g typings
```

3 - Install type definitions:
```
$ typings install
```

4 - Install npm dependencies:
```
$ npm install
```

4 - Run build process
5 - Run build process
```
$ gulp
```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ var ninja = kernel.get(TYPES.Ninja);
return ninja;
```

### Features (v2.0.0 alpha.3)
### Features (v2.0.0-alpha.6)
Let's take a look to the InversifyJS features!

#### Declaring kernel modules
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"name": "inversify",
"version": "2.0.0-alpha.5",
"version": "2.0.0-alpha.6",
"description": "A lightweight IoC container written in TypeScript.",
"main": "dist/inversify.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "gulp",
"preinstall": "npm install typings && typings install",
"prepublish": "gulp build && gulp test"
},
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion type_definitions/inversify/inversify.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Type definitions for inversify 2.0.0-alpha.5
// Type definitions for inversify 2.0.0-alpha.6
// Project: https://github.com/inversify/InversifyJS
// Definitions by: inversify <https://github.com/inversify>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
Expand Down

0 comments on commit 41816fd

Please sign in to comment.