xslt-processor 4.6.0 → 4.7.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 +28 -31
- package/index.d.mts +565 -241
- package/index.d.ts +565 -241
- package/index.js +14055 -5313
- package/index.js.map +1 -1
- package/index.mjs +14109 -5367
- package/index.mjs.map +1 -1
- package/package.json +12 -3
- package/umd/xslt-processor.global.js +6 -3
- package/umd/xslt-processor.global.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xslt-processor",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.0",
|
|
4
4
|
"description": "A JavaScript XSLT Processor",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -21,7 +21,10 @@
|
|
|
21
21
|
"pre-build-setup": "rimraf ./dist",
|
|
22
22
|
"build": "yarn pre-build-setup && tsup && yarn copy-files-from-to",
|
|
23
23
|
"lint": "eslint src/**/*",
|
|
24
|
-
"
|
|
24
|
+
"docs": "typedoc",
|
|
25
|
+
"docs:watch": "typedoc --watch",
|
|
26
|
+
"docs:markdown": "typedoc --plugin typedoc-plugin-markdown --out docs/api",
|
|
27
|
+
"deploy": "yarn build && yarn docs && git subtree push --prefix interactive-tests origin gh-pages"
|
|
25
28
|
},
|
|
26
29
|
"repository": {
|
|
27
30
|
"type": "git",
|
|
@@ -66,9 +69,11 @@
|
|
|
66
69
|
"npm-check-updates": "^16.10.13",
|
|
67
70
|
"release-it": "^17.6.0",
|
|
68
71
|
"rimraf": "^5.0.1",
|
|
69
|
-
"tsup": "^8.0.0",
|
|
70
72
|
"ts-jest": "^29.4.6",
|
|
71
73
|
"ts-node": "^10.9.2",
|
|
74
|
+
"tsup": "^8.0.0",
|
|
75
|
+
"typedoc": "^0.28.16",
|
|
76
|
+
"typedoc-plugin-markdown": "^4.9.0",
|
|
72
77
|
"typescript": "^5.9.2"
|
|
73
78
|
},
|
|
74
79
|
"dependencies": {},
|
|
@@ -84,6 +89,10 @@
|
|
|
84
89
|
{
|
|
85
90
|
"from": "dist/umd/xslt-processor.global.js",
|
|
86
91
|
"to": "interactive-tests/js/xslt-processor.global.js"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"from": "docs/guides/*.md",
|
|
95
|
+
"to": "interactive-tests/docs/guides/"
|
|
87
96
|
}
|
|
88
97
|
]
|
|
89
98
|
}
|