Skip to content

Commit d0d14f2

Browse files
committed
Upgraded dependencies
1 parent c6e98b4 commit d0d14f2

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.vscode/settings.json

+2
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@
1414
"**/docs": true,
1515
"type_definitions/**/*.js": true
1616
}
17+
,
18+
"vsicons.presets.angular": false
1719
}

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "inversify-binding-decorators",
3-
"version": "3.0.0-beta.1",
3+
"version": "3.0.0",
44
"description": "An utility that allows developers to declare InversifyJS bindings using ES2016 decorators",
55
"main": "lib/index.js",
66
"jsnext:main": "es/index.js",
@@ -34,13 +34,13 @@
3434
"gulp-mocha": "^3.0.0",
3535
"gulp-tslint": "^7.0.0",
3636
"gulp-typescript": "^3.0.0",
37-
"inversify": "^3.0.0-rc.1",
37+
"inversify": "^3.0.0",
3838
"mocha": "^3.0.0",
3939
"publish-please": "^2.1.4",
4040
"reflect-metadata": "^0.1.3",
4141
"run-sequence": "^1.2.0",
4242
"sinon": "^1.17.4",
43-
"tslint": "^4.0.1",
43+
"tslint": "^4.4.2",
4444
"typescript": "^2.1.1"
4545
}
4646
}

test/utils/auto_wire.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe("autoProvide", () => {
1010
it("Should be able to auto-wire binding declarations", () => {
1111

1212
let container = new Container();
13-
// Note @inject annotations are required autoProvide
13+
// Note @inject annotations are required autoProvide
1414
// even when using classes are used as identifiers
1515
// See declaration of Warrior for more details
1616
autoProvide(container, entites);

0 commit comments

Comments
 (0)