@reportforge/playwright-pdf 0.26.1 → 0.28.0
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 +48 -2
- package/dist/cli/index.js +19 -3
- package/dist/index.d.mts +37 -42
- package/dist/index.d.ts +37 -42
- package/dist/index.js +1425 -1350
- package/dist/index.mjs +1528 -1453
- package/package.json +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reportforge/playwright-pdf",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.28.0",
|
|
4
4
|
"description": "Playwright Test reporter that generates designed PDF reports: minimal, detailed, and executive templates with CI/CD integrations",
|
|
5
5
|
"license": "Elastic-2.0",
|
|
6
6
|
"author": "ReportForge",
|
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
},
|
|
50
50
|
"files": [
|
|
51
51
|
"dist",
|
|
52
|
+
"!dist/engine",
|
|
52
53
|
"ci-templates",
|
|
53
54
|
"README.md",
|
|
54
55
|
"LICENSE",
|
|
@@ -57,7 +58,9 @@
|
|
|
57
58
|
"scripts": {
|
|
58
59
|
"prebuild": "npm run bundle-chartjs && npm run bundle-fonts && npm run bundle-pubkey && npm run bundle-model && npm run precompile-templates",
|
|
59
60
|
"build": "tsup && npm run copy-templates",
|
|
60
|
-
"
|
|
61
|
+
"build:test-engine": "tsup --config tsup.test-engine.config.ts && node scripts/build/copy-templates.mjs test-dist",
|
|
62
|
+
"stage:bindings": "tsx scripts/build/stage-bindings.ts",
|
|
63
|
+
"copy-templates": "node scripts/build/copy-templates.mjs",
|
|
61
64
|
"bundle-chartjs": "tsx scripts/build/bundle-chartjs.ts",
|
|
62
65
|
"bundle-fonts": "tsx scripts/build/bundle-fonts.ts",
|
|
63
66
|
"bundle-pubkey": "tsx scripts/build/bundle-license-pubkey.ts",
|