Skip to content

Commit

Permalink
Fixes #257
Browse files Browse the repository at this point in the history
  • Loading branch information
remojansen committed Jun 21, 2016
1 parent eb07f85 commit 7b36aa8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ InversifyJS has been developed with 4 main goals:
You can get the latest release and the type definitions using npm:

```
npm install inversify@2.0.0-beta.9 inversify-dts reflect-metadata --save
npm install inversify@2.0.0-beta.10 reflect-metadata --save
npm install inversify-dts --save-dev
```

You will also need the type definitions files for inversify and reflect-metadata.
Expand Down
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ gulp.task("build-lib", function() {
"typings/index.d.ts",
"node_modules/reflect-metadata/reflect-metadata.d.ts",
"src/interfaces/globals.d.ts",
"src/inversify.ts"
"src/**/*.ts"
])
.pipe(tsc(tsLibProject))
.on("error", function (err) {
Expand All @@ -123,7 +123,7 @@ gulp.task("build-es", function() {
"typings/index.d.ts",
"node_modules/reflect-metadata/reflect-metadata.d.ts",
"src/interfaces/globals.d.ts",
"src/inversify.ts"
"src/**/*.ts"
])
.pipe(tsc(tsEsProject))
.on("error", function (err) {
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": "inversify",
"version": "2.0.0-beta.9",
"version": "2.0.0-beta.10",
"description": "A lightweight IoC container written in TypeScript.",
"main": "lib/inversify.js",
"jsnext:main": "es/inversify.js",
Expand Down

0 comments on commit 7b36aa8

Please sign in to comment.