@vc-shell/create-vc-app 1.0.138 → 1.0.140
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/CHANGELOG.md +8 -0
- package/dist/templates/base/_yarn/releases/yarn-4.0.2.cjs +893 -0
- package/dist/templates/base/_yarnrc.yml +5 -7
- package/dist/templates/base/package.json +9 -10
- package/package.json +5 -5
- package/dist/templates/base/_yarn/plugins/@yarnpkg/plugin-version.cjs +0 -550
- package/dist/templates/base/_yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs +0 -28
- package/dist/templates/base/_yarn/releases/yarn-3.6.4.cjs +0 -874
|
@@ -1,9 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
compressionLevel: mixed
|
|
2
|
+
|
|
3
|
+
enableGlobalCache: false
|
|
2
4
|
|
|
3
|
-
|
|
4
|
-
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
|
|
5
|
-
spec: "@yarnpkg/plugin-workspace-tools"
|
|
6
|
-
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
|
|
7
|
-
spec: "@yarnpkg/plugin-version"
|
|
5
|
+
nodeLinker: node-modules
|
|
8
6
|
|
|
9
|
-
yarnPath: .yarn/releases/yarn-
|
|
7
|
+
yarnPath: .yarn/releases/yarn-4.0.2.cjs
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"@types/lodash-es": "^4.17.12",
|
|
24
24
|
"@typescript-eslint/eslint-plugin": "^6.16.0",
|
|
25
25
|
"@typescript-eslint/parser": "^6.16.0",
|
|
26
|
-
"@vc-shell/api-client-generator": "^1.0.
|
|
27
|
-
"@vc-shell/release-config": "^1.0.
|
|
28
|
-
"@vc-shell/ts-config": "^1.0.
|
|
29
|
-
"@vitejs/plugin-vue": "^
|
|
26
|
+
"@vc-shell/api-client-generator": "^1.0.140",
|
|
27
|
+
"@vc-shell/release-config": "^1.0.140",
|
|
28
|
+
"@vc-shell/ts-config": "^1.0.140",
|
|
29
|
+
"@vitejs/plugin-vue": "^4.6.2",
|
|
30
30
|
"@vue/eslint-config-prettier": "^9.0.0",
|
|
31
31
|
"@vue/eslint-config-typescript": "^12.0.0",
|
|
32
32
|
"autoprefixer": "^10.4.16",
|
|
@@ -42,11 +42,10 @@
|
|
|
42
42
|
"lodash-es": "^4.17.21",
|
|
43
43
|
"postcss": "^8.4.32",
|
|
44
44
|
"prettier": "^3.1.1",
|
|
45
|
-
"querystring-es3": "^0.2.1",
|
|
46
45
|
"sass": "^1.69.6",
|
|
47
46
|
"tailwindcss": "^3.4.0",
|
|
48
47
|
"tsx": "^3.13.0",
|
|
49
|
-
"typescript": "5.3.3",
|
|
48
|
+
"typescript": "^5.3.3",
|
|
50
49
|
"vite": "^4.5.0",
|
|
51
50
|
"vite-plugin-checker": "^0.6.2",
|
|
52
51
|
"vite-plugin-mkcert": "^1.17.1",
|
|
@@ -56,19 +55,19 @@
|
|
|
56
55
|
},
|
|
57
56
|
"dependencies": {
|
|
58
57
|
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
59
|
-
"@vc-shell/config-generator": "^1.0.
|
|
60
|
-
"@vc-shell/framework": "^1.0.
|
|
58
|
+
"@vc-shell/config-generator": "^1.0.140",
|
|
59
|
+
"@vc-shell/framework": "^1.0.140",
|
|
61
60
|
"@vueuse/core": "^10.7.1",
|
|
62
61
|
"@vueuse/integrations": "^10.7.1",
|
|
63
62
|
"moment": "^2.30.1",
|
|
64
63
|
"roboto-fontface": "^0.10.0",
|
|
65
64
|
"vee-validate": "^4.12.4",
|
|
66
|
-
"vue": "3.4.
|
|
65
|
+
"vue": "^3.4.7",
|
|
67
66
|
"vue-router": "^4.2.5"
|
|
68
67
|
},
|
|
69
68
|
"lint-staged": {
|
|
70
69
|
"*.{js,ts,html,css}": "prettier --write '**/*.{ts,vue}'",
|
|
71
70
|
"*.{js,ts,vue}": "eslint --fix --cache '**/*.{ts,vue}'"
|
|
72
71
|
},
|
|
73
|
-
"packageManager": "yarn@
|
|
72
|
+
"packageManager": "yarn@4.0.2"
|
|
74
73
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vc-shell/create-vc-app",
|
|
3
3
|
"description": "Application scaffolding",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.140",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": "./dist/index.js",
|
|
7
7
|
"files": [
|
|
@@ -13,23 +13,23 @@
|
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
15
|
"@types/prompts": "^2.4.4",
|
|
16
|
-
"@vc-shell/ts-config": "^1.0.
|
|
16
|
+
"@vc-shell/ts-config": "^1.0.140",
|
|
17
17
|
"copyfiles": "^2.4.1",
|
|
18
18
|
"cross-env": "^7.0.3",
|
|
19
19
|
"shx": "^0.3.4",
|
|
20
|
-
"typescript": "5.3.3"
|
|
20
|
+
"typescript": "^5.3.3"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"chalk": "^2.4.2",
|
|
24
24
|
"mri": "^1.2.0",
|
|
25
25
|
"prompts": "^2.4.2",
|
|
26
26
|
"tslib": "^2.5.3",
|
|
27
|
-
"vite": "4.5.0",
|
|
27
|
+
"vite": "^4.5.0",
|
|
28
28
|
"vite-plugin-dts": "^3.6.4"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public",
|
|
32
32
|
"registry": "https://registry.npmjs.org/"
|
|
33
33
|
},
|
|
34
|
-
"packageManager": "yarn@
|
|
34
|
+
"packageManager": "yarn@4.0.2"
|
|
35
35
|
}
|