minidev 2.0.8 → 2.1.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/assets/builder-debug-utils/lib/compose.js +2 -2
- package/assets/builder-debug-utils/lib/sdk.js +1 -0
- package/assets/builder-debug-utils/lib/updater.js +1 -0
- package/assets/builder-debug-utils/offline/assets_map +1 -1
- package/assets/builder-debug-utils/offline/boatman_mini +1 -3
- package/assets/builder-debug-utils/package.json +10 -11
- package/assets/builder-debug-utils/readonly/assets_map +1 -1
- package/assets/builder-debug-utils/readonly/boatman_mini +1 -3
- package/assets/web-sim/devtool/main.js +1 -1
- package/assets/web-sim/main.js +1 -1
- package/assets/web-sim/simulator/main.js +1 -1
- package/lib/index.js +1 -1
- package/lib/rw_host.js +1 -1
- package/lib/worker.js +1 -1
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alipay/builder-debug-utils",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.2.9",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "lib/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -10,17 +10,16 @@
|
|
|
10
10
|
"readonly"
|
|
11
11
|
],
|
|
12
12
|
"scripts": {
|
|
13
|
-
"
|
|
14
|
-
"build": "
|
|
15
|
-
"build:dist": "../node_modules/.bin/rollup -c rollup.config.mjs",
|
|
13
|
+
"build": "yarn run clean && ../../node_modules/.bin/tsc -p ./tsconfig.json && yarn run build:dist && yarn run generate",
|
|
14
|
+
"build:dist": "../../node_modules/.bin/rollup -c rollup.config.mjs",
|
|
16
15
|
"clean": "rm -rf ./dist ./lib",
|
|
17
|
-
"watch": "
|
|
16
|
+
"watch": "../../node_modules/.bin/tsc-watch -p ./tsconfig.json --onSuccess 'yarn run build:dist'",
|
|
18
17
|
"lint": "echo done",
|
|
19
18
|
"lint:fix": "yarn lint --fix",
|
|
20
19
|
"prepublishOnly": "yarn run build && yarn run generate",
|
|
21
20
|
"generate": "node scripts/generator-prod.js",
|
|
22
21
|
"generate:watch": "node scripts/generator-watch.js",
|
|
23
|
-
"test": "
|
|
22
|
+
"test": "../../node_modules/.bin/jest --coverage",
|
|
24
23
|
"ci": "yarn run lint && yarn run build && yarn run test"
|
|
25
24
|
},
|
|
26
25
|
"publishConfig": {
|
|
@@ -35,11 +34,11 @@
|
|
|
35
34
|
"lockfile": "enable"
|
|
36
35
|
},
|
|
37
36
|
"devDependencies": {
|
|
38
|
-
"@alipay/boatman-cube": "
|
|
39
|
-
"@alipay/boatman-mini": "
|
|
40
|
-
"@alipay/tinybugme-render-uniweb": "
|
|
41
|
-
"@alipay/tinybugme-worker-preview": "
|
|
42
|
-
"@alipay/tinybugme-worker-remote": "
|
|
37
|
+
"@alipay/boatman-cube": "^2.2.9",
|
|
38
|
+
"@alipay/boatman-mini": "^2.2.9",
|
|
39
|
+
"@alipay/tinybugme-render-uniweb": "^2.2.9",
|
|
40
|
+
"@alipay/tinybugme-worker-preview": "^2.2.9",
|
|
41
|
+
"@alipay/tinybugme-worker-remote": "^2.2.9",
|
|
43
42
|
"@types/bent": "^7.0.2",
|
|
44
43
|
"@types/fs-extra": "^8.1.0",
|
|
45
44
|
"@types/jest": "^26.0.23",
|