xmlui 0.7.0 → 0.7.2
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/dist/{apiInterceptorWorker-Du6nEL2I.mjs → apiInterceptorWorker-DsyArfj8.mjs} +1 -1
- package/dist/{index-D4Zy2wSF.mjs → index-CqI3-Bug.mjs} +10807 -10539
- package/dist/index.css +1 -1
- package/dist/scripts/src/parsers/scripting/Parser.js +30 -6
- package/dist/scripts/src/parsers/scripting/TokenTrait.js +1 -1
- package/dist/style.css +1 -1
- package/dist/xmlui-metadata.mjs +3603 -3471
- package/dist/xmlui-metadata.umd.js +16 -16
- package/dist/xmlui-standalone.umd.js +170 -168
- package/dist/xmlui.mjs +2 -2
- package/dist/xmlui.umd.js +91 -89
- package/package.json +8 -2
package/package.json
CHANGED
|
@@ -1,14 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xmlui",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"scripts": {
|
|
6
|
+
"start-test-bed": "cd src/testing/infrastructure && xmlui start",
|
|
6
7
|
"build:bin": "tsc -p tsconfig.bin.json",
|
|
7
8
|
"build:xmlui": "vite build --mode lib",
|
|
8
9
|
"build:xmlui-standalone": "vite build --mode standalone",
|
|
9
10
|
"build:xmlui-metadata": "vite build --mode metadata",
|
|
10
11
|
"build": "rimraf dist && tsc && npm run build:bin && npm run build:xmlui-metadata && npm run build:xmlui && npm run build:xmlui-standalone",
|
|
11
|
-
"test": "
|
|
12
|
+
"test": "npm run test:unit",
|
|
13
|
+
"test:unit": "vitest run",
|
|
14
|
+
"test:e2e": "playwright test",
|
|
15
|
+
"test:e2e-ui": "npm run test:e2e -- --ui",
|
|
12
16
|
"prepublishOnly": "clean-package && npm run build",
|
|
13
17
|
"postpublish": "clean-package restore",
|
|
14
18
|
"prepare-docs-data": "npm run build:xmlui-metadata",
|
|
@@ -98,6 +102,7 @@
|
|
|
98
102
|
"@babel/core": "7.19.6",
|
|
99
103
|
"@babel/preset-env": "7.19.4",
|
|
100
104
|
"@babel/preset-typescript": "7.18.6",
|
|
105
|
+
"@playwright/test": "^1.49.0",
|
|
101
106
|
"@types/adm-zip": "0.5.4",
|
|
102
107
|
"@types/glob": "7.2.0",
|
|
103
108
|
"@types/lodash-es": "4.17.6",
|
|
@@ -121,6 +126,7 @@
|
|
|
121
126
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
122
127
|
"prettier": "^3.3.3",
|
|
123
128
|
"rimraf": "6.0.1",
|
|
129
|
+
"serve": "14.2.0",
|
|
124
130
|
"rollup-plugin-visualizer": "5.8.3",
|
|
125
131
|
"typedoc": "^0.26.2",
|
|
126
132
|
"typescript": "^5.5.4",
|