@file-viewer/docx 0.3.22 → 0.3.24
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/README.md +20 -4
- package/dist/docx-preview.js +1 -1
- package/dist/docx-preview.min.js +1 -1
- package/dist/docx-preview.min.mjs +1 -1
- package/dist/docx-preview.mjs +1 -1
- package/dist/docx-preview.worker.js +1 -1
- package/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@file-viewer/docx",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.24",
|
|
4
4
|
"description": "Pure HTML DOCX renderer fork for browser-based Word previews.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"keywords": [
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"@rollup/plugin-terser": "^0.4.4",
|
|
33
33
|
"@rollup/plugin-typescript": "^12.1.4",
|
|
34
34
|
"terser": "^5.43.1",
|
|
35
|
-
"diff": "^8.0.2",
|
|
36
35
|
"jasmine-core": "^5.1.0",
|
|
37
36
|
"karma": "^6.3.9",
|
|
38
37
|
"karma-chrome-launcher": "^3.1.0",
|
|
@@ -45,10 +44,11 @@
|
|
|
45
44
|
"build": "node scripts/build-dist.cjs",
|
|
46
45
|
"build-prod": "node scripts/build-dist.cjs",
|
|
47
46
|
"watch": "rollup --config rollup.config.mjs --watch",
|
|
47
|
+
"verify": "npm run build && npm run test:regression",
|
|
48
|
+
"test:regression": "node scripts/run-regressions.cjs",
|
|
48
49
|
"e2e": "karma start karma.conf.cjs --single-run",
|
|
49
50
|
"e2e:chart": "karma start karma.chart.conf.cjs --single-run",
|
|
50
51
|
"e2e:header-guard": "karma start karma.issue130.conf.cjs --single-run",
|
|
51
|
-
"test:page-defaults": "node tests/regression/check-page-layout-defaults.cjs",
|
|
52
52
|
"e2e-watch": "karma start karma.conf.cjs",
|
|
53
53
|
"build:rollup": "rollup --config rollup.config.mjs",
|
|
54
54
|
"build-prod:rollup": "rollup --config rollup.config.mjs --environment BUILD:production"
|