@deboxsoft/module-server
Advanced tools
Comparing version 1.5.19-5 to 1.5.19-6
@@ -6,3 +6,2 @@ 'use strict'; | ||
var moduleCore = require('@deboxsoft/module-core'); | ||
var utils_cjs = require('@deboxsoft/module-core/utils.cjs'); | ||
@@ -15,10 +14,2 @@ const tokenLogger = new moduleCore.Token("logger"); | ||
Object.keys(utils_cjs).forEach(function (k) { | ||
if (k !== 'default') Object.defineProperty(exports, k, { | ||
enumerable: true, | ||
get: function () { | ||
return utils_cjs[k]; | ||
} | ||
}); | ||
}); | ||
Object.defineProperty(exports, 'Container', { | ||
@@ -36,3 +27,9 @@ enumerable: true, | ||
}); | ||
Object.defineProperty(exports, 'utils', { | ||
enumerable: true, | ||
get: function () { | ||
return moduleCore.utils; | ||
} | ||
}); | ||
exports.getLogger = getLogger; | ||
exports.registerLogger = registerLogger; |
import { Token, Container } from '@deboxsoft/module-core'; | ||
export { Container, Token } from '@deboxsoft/module-core'; | ||
export * from '@deboxsoft/module-core/utils.cjs'; | ||
export { Container, Token, utils } from '@deboxsoft/module-core'; | ||
@@ -5,0 +4,0 @@ const tokenLogger = new Token("logger"); |
{ | ||
"name": "@deboxsoft/module-server", | ||
"version": "1.5.19-5", | ||
"version": "1.5.19-6", | ||
"license": "SEE LICENSE IN LICENSE", | ||
@@ -36,3 +36,3 @@ "maintainers": [ | ||
"dependencies": { | ||
"@deboxsoft/module-core": "^1.5.19-6", | ||
"@deboxsoft/module-core": "^1.5.19-7", | ||
"nanoid": "^3.1.20", | ||
@@ -39,0 +39,0 @@ "nconf": "0.11.0" |
{ | ||
"extends": "../../tsconfig.base", | ||
"compilerOptions": { | ||
"paths": { | ||
"@deboxsoft/module-core/*": ["module-core/src/*"] | ||
} | ||
}, | ||
"include": ["src"] | ||
} |
export * from "./di"; | ||
export * from "./logger"; | ||
export * from "@deboxsoft/module-core/utils.cjs"; | ||
export * from "./utils"; |
Sorry, the diff of this file is not supported yet
3685
10
54