@wix/cli-app 1.0.82 → 1.0.84
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/build/index.js +148 -154
- package/build/index.js.map +1 -1
- package/build/xdg-open +1066 -0
- package/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/cli-app",
|
|
3
3
|
"description": "CLI tool for Wix apps",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.84",
|
|
5
5
|
"author": "Amit Dahan",
|
|
6
6
|
"dependencies": {
|
|
7
|
-
"vite": "4.4.9"
|
|
7
|
+
"vite": "4.4.9",
|
|
8
|
+
"yoga-wasm-web": "~0.3.3"
|
|
8
9
|
},
|
|
9
10
|
"devDependencies": {
|
|
10
|
-
"@types/lodash": "^4.14.
|
|
11
|
+
"@types/lodash": "^4.14.200",
|
|
11
12
|
"@wix/ambassador-ctp-app-cloud-deployer-service-v1-app-cloud-deployer": "^1.0.15",
|
|
12
|
-
"@wix/ambassador-ctp-gradual-rollout-v1-app-config": "^1.0.
|
|
13
|
-
"@wix/ambassador-devcenter-components-v1-component": "^1.0.
|
|
13
|
+
"@wix/ambassador-ctp-gradual-rollout-v1-app-config": "^1.0.58",
|
|
14
|
+
"@wix/ambassador-devcenter-components-v1-component": "^1.0.313",
|
|
14
15
|
"@wix/arm-client": "0.0.0",
|
|
15
16
|
"@wix/bi-logger-wix-cli": "^1.17.0",
|
|
16
17
|
"@wix/cli-app-definitions": "0.0.0",
|
|
@@ -37,7 +38,6 @@
|
|
|
37
38
|
"chokidar": "^3.5.3",
|
|
38
39
|
"fast-equals": "^5.0.1",
|
|
39
40
|
"form-data": "^4.0.0",
|
|
40
|
-
"get-port": "^6.1.2",
|
|
41
41
|
"globby": "^13.2.2",
|
|
42
42
|
"jsonfile": "^6.1.0",
|
|
43
43
|
"p-retry": "^5.1.2",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"typed-emitter": "^2.1.0",
|
|
50
50
|
"variant": "^3.0.0-dev.26",
|
|
51
51
|
"vite-plugin-externals": "^0.6.2",
|
|
52
|
-
"zod": "^3.22.
|
|
52
|
+
"zod": "^3.22.4"
|
|
53
53
|
},
|
|
54
54
|
"engines": {
|
|
55
55
|
"node": ">= 16.20"
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"build:watch": "run build --watch",
|
|
99
99
|
"lint": "run -T lint-package",
|
|
100
100
|
"test": "yarn workspace @wix/cli-app-spec run test",
|
|
101
|
-
"test:
|
|
101
|
+
"test:watch": "yarn workspace @wix/cli-app-spec run test:watch",
|
|
102
102
|
"typecheck": "run -T tsc --noEmit"
|
|
103
103
|
},
|
|
104
104
|
"sideEffects": false,
|
|
@@ -115,5 +115,5 @@
|
|
|
115
115
|
]
|
|
116
116
|
}
|
|
117
117
|
},
|
|
118
|
-
"falconPackageHash": "
|
|
118
|
+
"falconPackageHash": "58f26072787db046972cb53690ad45ba9946a3fc1671bed43c8c9e5a"
|
|
119
119
|
}
|