@vivliostyle/core 2.36.2 → 2.36.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/vivliostyle/assets.d.ts +1 -1
- package/lib/vivliostyle/base.d.ts +4 -0
- package/lib/vivliostyle/layout-helper.d.ts +15 -0
- package/lib/vivliostyle/layout.d.ts +3 -3
- package/lib/vivliostyle/table.d.ts +1 -1
- package/lib/vivliostyle/types.d.ts +1 -1
- package/lib/vivliostyle/vgen.d.ts +17 -1
- package/lib/vivliostyle/vtree.d.ts +2 -6
- package/lib/vivliostyle.js +18 -18
- package/lib/vivliostyle.js.map +3 -3
- package/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vivliostyle/core",
|
|
3
3
|
"description": "Vivliostyle Core library for HTML+CSS typesetting with EPUB/Web publications support",
|
|
4
|
-
"version": "2.36.
|
|
4
|
+
"version": "2.36.3",
|
|
5
5
|
"author": "Vivliostyle Foundation",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "tsc --emitDeclarationOnly && esbuild src/vivliostyle.ts --bundle --outfile=lib/vivliostyle.js --format=cjs --define:VIVLIOSTYLE_DEBUG=false --minify --sourcemap --target=es2018",
|
|
@@ -10,8 +10,7 @@
|
|
|
10
10
|
"dev": "yarn build-dev --watch=forever",
|
|
11
11
|
"format": "prettier --write \"{*.{js,md,json},{src,types,test,resources}/**/*.{ts,js}}\"",
|
|
12
12
|
"lint": "eslint src --fix -f codeframe",
|
|
13
|
-
"test": "yarn --cwd test install && yarn --cwd test test"
|
|
14
|
-
"test-sauce": "yarn --cwd test install && yarn --cwd test test-sauce"
|
|
13
|
+
"test": "yarn --cwd test install && yarn --cwd test test"
|
|
15
14
|
},
|
|
16
15
|
"dependencies": {
|
|
17
16
|
"fast-diff": "^1.2.0"
|
|
@@ -59,5 +58,5 @@
|
|
|
59
58
|
"engines": {
|
|
60
59
|
"node": ">=14"
|
|
61
60
|
},
|
|
62
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "aed7fa74a334c8ed1d84cf6fd3bec68a18034fd9"
|
|
63
62
|
}
|