@qiwi/uniconfig-core
Advanced tools
Comparing version 2.22.2 to 3.0.0
@@ -0,1 +1,13 @@ | ||
# [@qiwi/uniconfig-core-v3.0.0](https://github.com/qiwi/uniconfig/compare/v2.23.0...v3.0.0) (2019-06-22) | ||
### Features | ||
* migrate to TypeScript ([7ad945e](https://github.com/qiwi/uniconfig/commit/7ad945e)), closes [#153](https://github.com/qiwi/uniconfig/issues/153) [#129](https://github.com/qiwi/uniconfig/issues/129) [#30](https://github.com/qiwi/uniconfig/issues/30) | ||
### BREAKING CHANGES | ||
* introduce updated ifaces | ||
# [@qiwi/uniconfig-core-v2.22.2](https://github.com/qiwi/uniconfig/compare/v2.22.1...v2.22.2) (2019-05-29) | ||
@@ -2,0 +14,0 @@ |
{ | ||
"name": "@qiwi/uniconfig-core", | ||
"version": "2.22.2", | ||
"version": "3.0.0", | ||
"description": "Core uniconfig library", | ||
"main": "dist/es5/index.js", | ||
"main": "target/es5/index.js", | ||
"types": "target/es5/index.d.ts", | ||
"scripts": { | ||
"jest": "BABEL_ENV=test NODE_ENV=test jest -w 1 --detectOpenHandles --config jest.config.json", | ||
"build_es6": "flow-remove-types src/ --out-dir dist/es6/", | ||
"build_es5": "BABEL_ENV=production babel src --out-dir dist/es5/", | ||
"build_bundle": "parcel build dist/es6/index.js --out-dir dist/bundle --experimental-scope-hoisting", | ||
"build": "rm -rf dist && npm run build_es6 && npm run build_es5 && npm run build_bundle" | ||
"clean": "rm -rf target", | ||
"jest": "NODE_ENV=test jest -w 1 --detectOpenHandles --config jest.config.json", | ||
"build_es5": "mkdir -p target/es5 && tsc -p tsconfig.build.json --target ES5 --outDir target/es5 -m CommonJS", | ||
"build_es6": "mkdir -p target/es6 && tsc -p tsconfig.build.json --target ES6 --outDir target/es6", | ||
"build_bundle": "parcel build target/es6/index.js --out-dir target/bundle --experimental-scope-hoisting", | ||
"build": "yarn clean && npm run build_es6 && npm run build_es5 && npm run build_bundle" | ||
}, | ||
@@ -29,2 +31,3 @@ "repository": { | ||
"dependencies": { | ||
"tslib": "^1.10.0", | ||
"lodash": "^4.17.11" | ||
@@ -35,7 +38,12 @@ }, | ||
"CHANGELOG.md", | ||
"dist/" | ||
"target" | ||
], | ||
"devDependencies": { | ||
"@babel/core": "^7.4.5" | ||
"typescript": "3.5.2", | ||
"@types/node": "^12.0.10", | ||
"@types/lodash": "^4.14.134", | ||
"ts-jest": "^24.0.2", | ||
"@types/jest": "^24.0.15", | ||
"jest": "^24.8.0" | ||
} | ||
} |
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
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
Minified code
QualityThis package contains minified code. This may be harmless in some cases where minified code is included in packaged libraries, however packages on npm should not minify code.
Found 1 instance in 1 package
198541
82
1258
2
6
2
+ Addedtslib@^1.10.0
+ Addedtslib@1.14.1(transitive)