@wix/cli-app 1.0.70 → 1.0.72
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 +169 -151
- package/build/index.js.map +1 -1
- package/package.json +11 -5
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/cli-app",
|
|
3
3
|
"description": "CLI tool for Wix apps",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.72",
|
|
5
5
|
"author": "Amit Dahan",
|
|
6
6
|
"dependencies": {
|
|
7
7
|
"@vitejs/plugin-react-swc": "3.3.0",
|
|
@@ -9,13 +9,14 @@
|
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
11
|
"@rollup/plugin-virtual": "^3.0.1",
|
|
12
|
+
"@types/lodash": "^4.14.194",
|
|
12
13
|
"@types/verror": "^1.10.6",
|
|
13
14
|
"@vitejs/plugin-basic-ssl": "^1.0.1",
|
|
14
15
|
"@wix/ambassador-ctp-app-cloud-deployer-service-v1-app-cloud-deployer": "^1.0.10",
|
|
15
16
|
"@wix/ambassador-ctp-gradual-rollout-v1-app-config": "^1.0.29",
|
|
16
17
|
"@wix/ambassador-devcenter-components-v1-component": "^1.0.227",
|
|
17
18
|
"@wix/arm-client": "0.0.0",
|
|
18
|
-
"@wix/bi-logger-wix-cli": "^1.
|
|
19
|
+
"@wix/bi-logger-wix-cli": "^1.14.0",
|
|
19
20
|
"@wix/cli-app-definitions": "0.0.0",
|
|
20
21
|
"@wix/cli-app-manifest": "1.0.0",
|
|
21
22
|
"@wix/cli-auth": "0.0.0",
|
|
@@ -26,13 +27,16 @@
|
|
|
26
27
|
"@wix/cli-http-client": "0.0.0",
|
|
27
28
|
"@wix/cli-i18n": "0.0.0",
|
|
28
29
|
"@wix/cli-logger": "0.0.0",
|
|
30
|
+
"@wix/cli-site-selector": "0.0.0",
|
|
29
31
|
"@wix/cli-telemetry": "0.0.0",
|
|
30
32
|
"@wix/cli-test-overrides": "0.0.0",
|
|
33
|
+
"@wix/cli-ui-kit": "0.0.0",
|
|
31
34
|
"@wix/dev-center-client": "0.0.0",
|
|
32
35
|
"@wix/site-list-client": "0.0.0",
|
|
33
36
|
"@wix/tsup-configs": "0.0.0",
|
|
34
|
-
"@wix/user-browser": "0.0.0",
|
|
35
37
|
"chalk": "^5.2.0",
|
|
38
|
+
"chokidar": "^3.5.3",
|
|
39
|
+
"fast-equals": "^5.0.1",
|
|
36
40
|
"form-data": "^4.0.0",
|
|
37
41
|
"get-port": "^6.1.2",
|
|
38
42
|
"globby": "^13.1.4",
|
|
@@ -43,6 +47,7 @@
|
|
|
43
47
|
"semver": "^7.5.0",
|
|
44
48
|
"tempy": "^3.0.0",
|
|
45
49
|
"terminal-link": "^3.0.0",
|
|
50
|
+
"typed-emitter": "^2.1.0",
|
|
46
51
|
"variant": "^3.0.0-dev.25",
|
|
47
52
|
"verror": "^1.10.1",
|
|
48
53
|
"vite-plugin-externals": "^0.6.2",
|
|
@@ -81,7 +86,7 @@
|
|
|
81
86
|
"files": [
|
|
82
87
|
{
|
|
83
88
|
"glob": "./build/index.js",
|
|
84
|
-
"maxSize": "
|
|
89
|
+
"maxSize": "370kb"
|
|
85
90
|
}
|
|
86
91
|
]
|
|
87
92
|
}
|
|
@@ -93,6 +98,7 @@
|
|
|
93
98
|
"scripts": {
|
|
94
99
|
"build": "run -T tsup",
|
|
95
100
|
"build:watch": "run build --watch",
|
|
101
|
+
"test": "yarn workspace @wix/cli-app-spec run test",
|
|
96
102
|
"test:build": "yarn workspace @wix/cli-app-spec run test:build",
|
|
97
103
|
"typecheck": "run -T tsc --noEmit"
|
|
98
104
|
},
|
|
@@ -108,5 +114,5 @@
|
|
|
108
114
|
]
|
|
109
115
|
}
|
|
110
116
|
},
|
|
111
|
-
"falconPackageHash": "
|
|
117
|
+
"falconPackageHash": "c622a977a7cf7c32d781089dc3c5b1b0e6d3016b2e374ce29a1cf050"
|
|
112
118
|
}
|