@wix/create-app 0.0.22 → 0.0.23
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 +138 -152
- package/build/index.js.map +1 -1
- package/build/xdg-open +1066 -0
- package/package.json +10 -9
- package/templates/app/.gitignore.ejs +3 -3
- package/templates/app/.yarnrc.yml.ejs +1 -1
- package/templates/app/wix.config.json +2 -1
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/create-app",
|
|
3
3
|
"description": "Create Wix apps",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.23",
|
|
5
5
|
"author": "Ihor Machuzhak",
|
|
6
6
|
"bin": "bin/index.cjs",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"yoga-wasm-web": "~0.3.3"
|
|
9
9
|
},
|
|
10
10
|
"devDependencies": {
|
|
11
|
-
"@commander-js/extra-typings": "^11.
|
|
12
|
-
"@types/is-git-url": "^1.0.
|
|
13
|
-
"@types/lodash": "^4.14.
|
|
14
|
-
"@types/validate-npm-package-name": "^4.0.
|
|
11
|
+
"@commander-js/extra-typings": "^11.1.0",
|
|
12
|
+
"@types/is-git-url": "^1.0.1",
|
|
13
|
+
"@types/lodash": "^4.14.200",
|
|
14
|
+
"@types/validate-npm-package-name": "^4.0.1",
|
|
15
15
|
"@wix/bi-logger-wix-cli": "^1.17.0",
|
|
16
16
|
"@wix/cli-auth": "0.0.0",
|
|
17
17
|
"@wix/cli-core-definitions": "0.0.0",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@wix/site-list-client": "0.0.0",
|
|
31
31
|
"@wix/tsup-configs": "0.0.0",
|
|
32
32
|
"chalk": "^5.3.0",
|
|
33
|
-
"commander": "^11.
|
|
33
|
+
"commander": "^11.1.0",
|
|
34
34
|
"execa": "^8.0.1",
|
|
35
35
|
"globby": "^13.2.2",
|
|
36
36
|
"is-git-url": "^1.0.0",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"tempy": "^3.1.0",
|
|
43
43
|
"validate-npm-package-name": "^5.0.0",
|
|
44
44
|
"variant": "^3.0.0-dev.26",
|
|
45
|
-
"zod": "^3.22.
|
|
45
|
+
"zod": "^3.22.4"
|
|
46
46
|
},
|
|
47
47
|
"engines": {
|
|
48
48
|
"node": ">= 16.20"
|
|
@@ -72,7 +72,8 @@
|
|
|
72
72
|
"dev:npm": "npx $INIT_CWD",
|
|
73
73
|
"dev:yarn": "yarn create @wix/app@portal:$INIT_CWD",
|
|
74
74
|
"lint": "run -T lint-package",
|
|
75
|
-
"test
|
|
75
|
+
"test": "yarn workspace @wix/create-app-spec run test",
|
|
76
|
+
"test:watch": "yarn workspace @wix/create-app-spec run test:watch",
|
|
76
77
|
"typecheck": "run -T tsc --noEmit"
|
|
77
78
|
},
|
|
78
79
|
"type": "module",
|
|
@@ -88,5 +89,5 @@
|
|
|
88
89
|
]
|
|
89
90
|
}
|
|
90
91
|
},
|
|
91
|
-
"falconPackageHash": "
|
|
92
|
+
"falconPackageHash": "4d446a88766b1051133c8de00ddf7fdc678a35a621b999756c6b0abc"
|
|
92
93
|
}
|
|
@@ -8,14 +8,14 @@ dist
|
|
|
8
8
|
# Logs
|
|
9
9
|
logs
|
|
10
10
|
*.log
|
|
11
|
-
<% if(packageManager.
|
|
11
|
+
<% if(packageManager.name === 'yarn' || packageManager.name === 'yarn-berry') { -%>
|
|
12
12
|
yarn-debug.log*
|
|
13
13
|
yarn-error.log*
|
|
14
|
-
<% } else if (packageManager.
|
|
14
|
+
<% } else if (packageManager.name === 'npm') { -%>
|
|
15
15
|
npm-debug.log*
|
|
16
16
|
<% } -%>
|
|
17
17
|
|
|
18
|
-
<% if(packageManager.
|
|
18
|
+
<% if(packageManager.name === 'yarn-berry') { -%>
|
|
19
19
|
# Yarn Berry
|
|
20
20
|
.pnp.*
|
|
21
21
|
.yarn/*
|