@vivliostyle/core
Advanced tools
Comparing version 2.1.0-pre.0 to 2.1.0-pre.1
@@ -6,2 +6,10 @@ # Change Log | ||
# [2.1.0-pre.1](https://github.com/vivliostyle/vivliostyle.js/compare/v2.1.0-pre.0...v2.1.0-pre.1) (2020-06-30) | ||
### Bug Fixes | ||
- simplify build dep graph ([8b5467d](https://github.com/vivliostyle/vivliostyle.js/commit/8b5467df34c784b399f051e04f796917a13e91d7)) | ||
- **core:** main prop ([234879a](https://github.com/vivliostyle/vivliostyle.js/commit/234879aa2dab028db37af0b124d07170a8020d1d)) | ||
- **core:** move resources ([1ad7bef](https://github.com/vivliostyle/vivliostyle.js/commit/1ad7beff99bb339ff2635792c232f99a9117e723)) | ||
# [2.1.0-pre.0](https://github.com/vivliostyle/vivliostyle.js/compare/v2.0.0...v2.1.0-pre.0) (2020-05-13) | ||
@@ -8,0 +16,0 @@ |
{ | ||
"name": "@vivliostyle/core", | ||
"description": "Vivliostyle Core library for HTML+CSS typesetting with EPUB/Web publications support", | ||
"version": "2.1.0-pre.0", | ||
"version": "2.1.0-pre.1", | ||
"author": "Vivliostyle Foundation", | ||
"scripts": { | ||
"build": "NODE_ENV=production rollup -c", | ||
"build-dev": "NODE_ENV=development rollup -c", | ||
"build": "microbundle --format cjs,umd,esm --define VIVLIOSTYLE_DEBUG=false", | ||
"build-dev": "microbundle --no-compress --format cjs --define VIVLIOSTYLE_DEBUG=false", | ||
"clean": "shx rm -rf lib/* .cache", | ||
"dev": "yarn build-dev -w", | ||
"dev": "yarn build-dev --watch", | ||
"format": "prettier --write \"{*.{js,md,json},{src,types,test,resources}/**/*.{ts,js,html}}\"", | ||
"lint": "eslint src --fix --ext .ts -f codeframe", | ||
"test": "karma start test/conf/karma-local.conf.js", | ||
"test-sauce": "test -z \"$SAUCE_USERNAME\" || karma start test/conf/karma-sauce.conf.js" | ||
"test": "yarn --cwd test install && yarn --cwd test test", | ||
"test-sauce": "yarn --cwd test install && yarn --cwd test test-sauce" | ||
}, | ||
"dependencies": { | ||
"fast-diff": "^1.2.0" | ||
}, | ||
"devDependencies": { | ||
"@rollup/plugin-commonjs": "^11.0.2", | ||
"@rollup/plugin-node-resolve": "^7.1.1", | ||
"@rollup/plugin-replace": "^2.3.1", | ||
"@rollup/plugin-strip": "^1.3.2", | ||
"@rollup/plugin-typescript": "^3.1.1", | ||
"@typescript-eslint/eslint-plugin": "^2.26.0", | ||
"@typescript-eslint/parser": "^2.26.0", | ||
"circular-dependency-plugin": "^5.2.0", | ||
"dts-bundle": "^0.7.3", | ||
"dts-bundle-webpack": "^1.0.2", | ||
"eslint": "^6.8.0", | ||
"eslint-config-prettier": "^6.10.1", | ||
"eslint-plugin-import": "^2.20.2", | ||
"eslint-plugin-prettier": "^3.1.2", | ||
"fast-diff": "^1.2.0", | ||
"husky": "^4.2.3", | ||
"jasmine-core": "^3.4.0", | ||
"karma": "^4.3.0", | ||
"karma-cli": "^2.0.0", | ||
"karma-jasmine": "^3.1.1", | ||
"karma-sauce-launcher": "^4.1.2", | ||
"karma-sourcemap-loader": "^0.3.7", | ||
"karma-typescript-preprocessor": "^0.4.0", | ||
"karma-verbose-reporter": "0.0.6", | ||
"karma-webpack": "^4.0.2", | ||
"lerna": "^3.20.2", | ||
"lint-staged": "^10.1.1", | ||
"prettier": "^2.0.2", | ||
"raw-loader": "^4.0.0", | ||
"rollup": "^2.3.2", | ||
"rollup-plugin-babel": "^4.4.0", | ||
"rollup-plugin-sourcemaps": "^0.5.0", | ||
"rollup-plugin-string": "^3.0.0", | ||
"rollup-plugin-terser": "^5.3.0", | ||
"shipjs": "^0.18.0", | ||
"ts-loader": "^6.2.2", | ||
"tslib": "^1.10.0", | ||
"typescript": "^3.8.3", | ||
"webpack": "^4.42.1", | ||
"webpack-cli": "^3.3.11" | ||
"microbundle": "^0.12.2", | ||
"shx": "^0.3.2", | ||
"typescript": "^3.8.3" | ||
}, | ||
"source": "src/vivliostyle.ts", | ||
"types": "lib/vivliostyle.d.ts", | ||
"module": "lib/esm/vivliostyle.js", | ||
"main": "lib/cjs/vivliostyle.js", | ||
"browser": "lib/vivliostyle.js", | ||
"main": "lib/vivliostyle.js", | ||
"module": "lib/vivliostyle.esm.js", | ||
"esmodule": "lib/vivliostyle.modern.js", | ||
"unpkg": "lib/vivliostyle.umd.js", | ||
"files": [ | ||
"lib", | ||
"resources" | ||
"lib" | ||
], | ||
@@ -70,5 +44,5 @@ "publishConfig": { | ||
"type": "git", | ||
"url": "https://github.com/vivliostyle/vivliostyle.js.git" | ||
"url": "https://github.com/vivliostyle/vivliostyle.js.git", | ||
"directory": "packages/core" | ||
}, | ||
"license": "AGPL-3.0", | ||
"bugs": { | ||
@@ -81,3 +55,4 @@ "url": "https://github.com/vivliostyle/vivliostyle.js/issues" | ||
], | ||
"gitHead": "3a87fb4ef9913ed1087c7f108c183f706c1c8ef4" | ||
"license": "AGPL-3.0", | ||
"gitHead": "b953e4c167bac216aadd773c70306e570f19afb1" | ||
} |
@@ -53,4 +53,4 @@ # Vivliostyle Core | ||
[npm-url]: https://www.npmjs.com/package/@vivliostyle/core | ||
[build-status]: https://travis-ci.org/vivliostyle/vivliostyle.js.svg | ||
[build-status-url]: https://travis-ci.org/vivliostyle/vivliostyle.js | ||
[build-status]: https://travis-ci.com/vivliostyle/vivliostyle.js.svg?branch=master | ||
[build-status-url]: https://travis-ci.com/vivliostyle/vivliostyle.js | ||
[deps]: https://img.shields.io/david/vivliostyle/vivliostyle.js?path=packages/core | ||
@@ -57,0 +57,0 @@ [deps-url]: https://david-dm.org/vivliostyle/vivliostyle.js/?path=packages/core |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
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
9
64
47768
4587751
1
1
+ Addedfast-diff@^1.2.0
+ Addedfast-diff@1.3.0(transitive)