@alevnyacow/nzmt 0.8.1 → 0.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +3 -1
- package/package.json +1 -1
package/bin/cli.js
CHANGED
|
@@ -277,7 +277,9 @@ function initDI() {
|
|
|
277
277
|
"export const fromDI = <Result>(key: DITokens) => {",
|
|
278
278
|
"\tconst container = getActiveContainer()",
|
|
279
279
|
"\treturn container.get<Result>(key)",
|
|
280
|
-
"}"
|
|
280
|
+
"}",
|
|
281
|
+
"",
|
|
282
|
+
"export { DITokens }"
|
|
281
283
|
].join('\n'))
|
|
282
284
|
};
|
|
283
285
|
|