@deboxsoft/module-core
Advanced tools
Comparing version 1.5.19-1 to 1.5.19-3
{ | ||
"name": "@deboxsoft/module-core", | ||
"version": "1.5.19-1", | ||
"version": "1.5.19-3", | ||
"license": "SEE LICENSE IN LICENSE", | ||
@@ -19,2 +19,6 @@ "maintainers": [ | ||
"module": "index.js", | ||
"files": [ | ||
"*", | ||
"!src" | ||
], | ||
"scripts": { | ||
@@ -24,7 +28,7 @@ "dev": "yarn build:rollup --watch", | ||
"build:rollup": "yarn r:rollup -c ../../scripts/rollup/core.config.js", | ||
"build:tsc": "yarn r:tsc", | ||
"build:tsc": "yarn clean && yarn r:tsc --declaration --emitDeclarationOnly --declarationDir ./types", | ||
"clean": "yarn r:rimraf types", | ||
"lint": "yarn r:run-p lint:eslint lint:tsc", | ||
"lint:eslint": "eslint --fix 'src/**/*.ts'", | ||
"lint:tsc": "tsc --noEmit", | ||
"lint:eslint": "yarn r:eslint --fix 'src/**/*.ts'", | ||
"lint:tsc": "yarn r:tsc --declaration false --noEmit", | ||
"publish:canary": "npm publish --tag canary", | ||
@@ -31,0 +35,0 @@ "test": "yarn r:jest --passWithNoTests" |
{ | ||
"extends": "../../tsconfig.base.json", | ||
"compilerOptions": { | ||
"declarationDir": "types" | ||
}, | ||
"include": ["src"], | ||
"exclude": ["**/__tests__", "**/__mocks__"] | ||
} |
import { Container, Token } from "typedi"; | ||
import { Logger } from "./logger"; | ||
import { DeboxError } from "./Error"; | ||
export * from "./types"; | ||
export { Container, Token, Logger, DeboxError }; |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20175
23
384