@contember/config-loader
Advanced tools
Comparing version 1.4.0-rc.8 to 2.0.0-alpha.8
{ | ||
"name": "@contember/config-loader", | ||
"version": "1.4.0-rc.8", | ||
"version": "2.0.0-alpha.8", | ||
"license": "Apache-2.0", | ||
"main": "dist/src/index.js", | ||
"typings": "dist/src/index.d.ts", | ||
"main": "./dist/production/index.js", | ||
"typings": "./dist/types/index.d.ts", | ||
"exports": { | ||
"typescript": "./src/index.ts", | ||
"default": "./dist/src/index.js" | ||
".": { | ||
"import": { | ||
"types": "./dist/types/index.d.ts", | ||
"development": "./dist/development/index.js", | ||
"production": "./dist/production/index.js", | ||
"typescript": "./src/index.ts", | ||
"default": "./dist/production/index.js" | ||
}, | ||
"require": { | ||
"types": "./dist/types/index.d.ts", | ||
"development": "./dist/development/index.cjs", | ||
"production": "./dist/production/index.cjs", | ||
"typescript": "./src/index.ts", | ||
"default": "./dist/production/index.cjs" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"test": "echo 'No tests'" | ||
}, | ||
"devDependencies": { | ||
@@ -20,3 +31,4 @@ "@types/js-yaml": "^4.0.9", | ||
"js-yaml": "^4.1.0" | ||
} | ||
}, | ||
"type": "module" | ||
} |
@@ -28,8 +28,8 @@ class Merger { | ||
export interface ValueObject<P> { | ||
[x: string]: ValueItem<P> | ||
readonly [x: string]: ValueItem<P> | ||
} | ||
export interface ValueArray<P> extends Array<ValueItem<P>> {} | ||
export interface ValueArray<P> extends ReadonlyArray<ValueItem<P>> {} | ||
} | ||
export default Merger |
{ | ||
"extends": "../tsconfig.settings.json", | ||
"compilerOptions": { | ||
"outDir": "../dist/src" | ||
"outDir": "../dist/types" | ||
} | ||
} |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
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
No tests
QualityPackage does not have any tests. This is a strong signal of a poorly maintained or low quality package.
Found 1 instance in 1 package
151006
72
1241
2
Yes
1