Skip to content

Commit d512089

Browse files
Missing container-config.d.ts
1 parent 721eef8 commit d512089

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-ioc",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "A Lightweight annotation-based dependency injection container for typescript.",
55
"author": "Thiago da Rosa de Bustamante <[email protected]>",
66
"scripts": {
@@ -17,7 +17,7 @@
1717
"tsc": "npm run tsc:es6 && npm run tsc:es5 && npm run tsc:index",
1818
"tsc:es5": "tsc --outDir . && renamer --find typescript-ioc --replace es5 'typescript-ioc*.js*' && replace 'typescript-ioc.js' 'es5.js' ./es5.js",
1919
"tsc:es6": "tsc --target ES6 --outDir . && renamer --find typescript-ioc --replace es6 'typescript-ioc*.js*' && replace 'typescript-ioc.js' 'es6.js' ./es6.js",
20-
"tsc:index": "tsc --outDir . src/index.ts src/container-config.ts"
20+
"tsc:index": "tsc --outDir . src/index.ts"
2121
},
2222
"nyc": {
2323
"include": [

tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
"target": "es5"
2222
},
2323
"include": [
24-
"src/typescript-ioc.ts"
24+
"src/typescript-ioc.ts", "src/container-config.ts"
2525
]
2626
}

0 commit comments

Comments
 (0)