create-soybean 1.0.9 → 1.0.11
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/package.json +2 -2
- package/template-pnpm-monorepo/.vscode/extensions.json +12 -3
- package/template-pnpm-monorepo/.vscode/launch.json +4 -4
- package/template-pnpm-monorepo/package.json +5 -5
- package/template-pnpm-monorepo/packages/demo-pkg/package.json +2 -2
- package/template-react/package.json +1 -1
- package/template-react-native/package.json +1 -1
- package/template-solid/package.json +1 -1
- package/template-ts-lib-tsup/.vscode/extensions.json +12 -3
- package/template-ts-lib-tsup/.vscode/launch.json +4 -4
- package/template-ts-lib-tsup/package.json +6 -6
- package/template-ts-lib-unbuild/.vscode/extensions.json +12 -3
- package/template-ts-lib-unbuild/.vscode/launch.json +4 -4
- package/template-ts-lib-unbuild/package.json +6 -6
- package/template-vue/.vscode/extensions.json +9 -4
- package/template-vue/.vscode/launch.json +5 -5
- package/template-vue/package.json +9 -9
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-soybean",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.11",
|
|
5
5
|
"description": "SoybeanJS's command line to create different project templates",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Soybean",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"@types/minimist": "1.2.5",
|
|
38
38
|
"@types/prompts": "2.4.9",
|
|
39
39
|
"tsup": "8.0.2",
|
|
40
|
-
"typescript": "5.
|
|
40
|
+
"typescript": "5.4.2"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
43
|
"build": "pnpm typecheck && pnpm build-only",
|
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"recommendations": [
|
|
3
|
+
"afzalsayed96.icones",
|
|
4
|
+
"antfu.iconify",
|
|
3
5
|
"antfu.unocss",
|
|
4
6
|
"dbaeumer.vscode-eslint",
|
|
5
7
|
"editorconfig.editorconfig",
|
|
6
8
|
"esbenp.prettier-vscode",
|
|
7
|
-
"formulahendry.auto-complete-tag",
|
|
8
9
|
"formulahendry.auto-close-tag",
|
|
10
|
+
"formulahendry.auto-complete-tag",
|
|
9
11
|
"formulahendry.auto-rename-tag",
|
|
10
|
-
"
|
|
11
|
-
"mhutchie.git-graph"
|
|
12
|
+
"lokalise.i18n-ally",
|
|
13
|
+
"mhutchie.git-graph",
|
|
14
|
+
"mikestead.dotenv",
|
|
15
|
+
"naumovs.color-highlight",
|
|
16
|
+
"pkief.material-icon-theme",
|
|
17
|
+
"sdras.vue-vscode-snippets",
|
|
18
|
+
"vue.volar",
|
|
19
|
+
"whtouche.vscode-js-console-utils",
|
|
20
|
+
"zhuangtongfa.material-theme"
|
|
12
21
|
]
|
|
13
22
|
}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"version": "1.0.0",
|
|
3
3
|
"configurations": [
|
|
4
4
|
{
|
|
5
|
+
"name": "TS Debugger",
|
|
5
6
|
"type": "node",
|
|
6
7
|
"request": "launch",
|
|
7
|
-
"
|
|
8
|
-
"skipFiles": ["<node_internals>/**"],
|
|
9
|
-
"
|
|
10
|
-
"program": "${relativeFile}"
|
|
8
|
+
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/tsx",
|
|
9
|
+
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"],
|
|
10
|
+
"program": "${file}"
|
|
11
11
|
}
|
|
12
12
|
]
|
|
13
13
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pnpm-monorepo",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.11",
|
|
5
5
|
"private": true,
|
|
6
6
|
"packageManager": "pnpm@8.13.1",
|
|
7
7
|
"scripts": {
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@soybeanjs/cli": "1.0.
|
|
19
|
-
"@soybeanjs/eslint-config": "1.2.
|
|
18
|
+
"@soybeanjs/cli": "1.0.11",
|
|
19
|
+
"@soybeanjs/eslint-config": "1.2.5",
|
|
20
20
|
"eslint": "8.57.0",
|
|
21
21
|
"lint-staged": "15.2.2",
|
|
22
|
-
"simple-git-hooks": "2.
|
|
22
|
+
"simple-git-hooks": "2.11.0",
|
|
23
23
|
"tsx": "4.7.1",
|
|
24
|
-
"typescript": "5.
|
|
24
|
+
"typescript": "5.4.2"
|
|
25
25
|
},
|
|
26
26
|
"simple-git-hooks": {
|
|
27
27
|
"commit-msg": "pnpm soy git-commit-verify",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "demo-pkg",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.11",
|
|
5
5
|
"private": true,
|
|
6
6
|
"packageManager": "pnpm@8.13.1",
|
|
7
7
|
"scripts": {
|
|
@@ -9,6 +9,6 @@
|
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {},
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"typescript": "5.
|
|
12
|
+
"typescript": "5.4.2"
|
|
13
13
|
}
|
|
14
14
|
}
|
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"recommendations": [
|
|
3
|
+
"afzalsayed96.icones",
|
|
4
|
+
"antfu.iconify",
|
|
3
5
|
"antfu.unocss",
|
|
4
6
|
"dbaeumer.vscode-eslint",
|
|
5
7
|
"editorconfig.editorconfig",
|
|
6
8
|
"esbenp.prettier-vscode",
|
|
7
|
-
"formulahendry.auto-complete-tag",
|
|
8
9
|
"formulahendry.auto-close-tag",
|
|
10
|
+
"formulahendry.auto-complete-tag",
|
|
9
11
|
"formulahendry.auto-rename-tag",
|
|
10
|
-
"
|
|
11
|
-
"mhutchie.git-graph"
|
|
12
|
+
"lokalise.i18n-ally",
|
|
13
|
+
"mhutchie.git-graph",
|
|
14
|
+
"mikestead.dotenv",
|
|
15
|
+
"naumovs.color-highlight",
|
|
16
|
+
"pkief.material-icon-theme",
|
|
17
|
+
"sdras.vue-vscode-snippets",
|
|
18
|
+
"vue.volar",
|
|
19
|
+
"whtouche.vscode-js-console-utils",
|
|
20
|
+
"zhuangtongfa.material-theme"
|
|
12
21
|
]
|
|
13
22
|
}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"version": "1.0.0",
|
|
3
3
|
"configurations": [
|
|
4
4
|
{
|
|
5
|
+
"name": "TS Debugger",
|
|
5
6
|
"type": "node",
|
|
6
7
|
"request": "launch",
|
|
7
|
-
"
|
|
8
|
-
"skipFiles": ["<node_internals>/**"],
|
|
9
|
-
"
|
|
10
|
-
"program": "${relativeFile}"
|
|
8
|
+
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/tsx",
|
|
9
|
+
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"],
|
|
10
|
+
"program": "${file}"
|
|
11
11
|
}
|
|
12
12
|
]
|
|
13
13
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-lib-tsup",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.11",
|
|
5
5
|
"private": true,
|
|
6
6
|
"packageManager": "pnpm@8.13.1",
|
|
7
7
|
"sideEffects": false,
|
|
@@ -37,16 +37,16 @@
|
|
|
37
37
|
"ofetch": "1.3.3"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@soybeanjs/cli": "1.0.
|
|
41
|
-
"@soybeanjs/eslint-config": "1.2.
|
|
40
|
+
"@soybeanjs/cli": "1.0.11",
|
|
41
|
+
"@soybeanjs/eslint-config": "1.2.5",
|
|
42
42
|
"@types/cli-progress": "3.11.5",
|
|
43
|
-
"@types/node": "20.11.
|
|
43
|
+
"@types/node": "20.11.28",
|
|
44
44
|
"eslint": "8.57.0",
|
|
45
45
|
"lint-staged": "15.2.2",
|
|
46
|
-
"simple-git-hooks": "2.
|
|
46
|
+
"simple-git-hooks": "2.11.0",
|
|
47
47
|
"tsup": "8.0.2",
|
|
48
48
|
"tsx": "4.7.1",
|
|
49
|
-
"typescript": "5.
|
|
49
|
+
"typescript": "5.4.2"
|
|
50
50
|
},
|
|
51
51
|
"simple-git-hooks": {
|
|
52
52
|
"commit-msg": "pnpm soy git-commit-verify",
|
|
@@ -1,13 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"recommendations": [
|
|
3
|
+
"afzalsayed96.icones",
|
|
4
|
+
"antfu.iconify",
|
|
3
5
|
"antfu.unocss",
|
|
4
6
|
"dbaeumer.vscode-eslint",
|
|
5
7
|
"editorconfig.editorconfig",
|
|
6
8
|
"esbenp.prettier-vscode",
|
|
7
|
-
"formulahendry.auto-complete-tag",
|
|
8
9
|
"formulahendry.auto-close-tag",
|
|
10
|
+
"formulahendry.auto-complete-tag",
|
|
9
11
|
"formulahendry.auto-rename-tag",
|
|
10
|
-
"
|
|
11
|
-
"mhutchie.git-graph"
|
|
12
|
+
"lokalise.i18n-ally",
|
|
13
|
+
"mhutchie.git-graph",
|
|
14
|
+
"mikestead.dotenv",
|
|
15
|
+
"naumovs.color-highlight",
|
|
16
|
+
"pkief.material-icon-theme",
|
|
17
|
+
"sdras.vue-vscode-snippets",
|
|
18
|
+
"vue.volar",
|
|
19
|
+
"whtouche.vscode-js-console-utils",
|
|
20
|
+
"zhuangtongfa.material-theme"
|
|
12
21
|
]
|
|
13
22
|
}
|
|
@@ -2,12 +2,12 @@
|
|
|
2
2
|
"version": "1.0.0",
|
|
3
3
|
"configurations": [
|
|
4
4
|
{
|
|
5
|
+
"name": "TS Debugger",
|
|
5
6
|
"type": "node",
|
|
6
7
|
"request": "launch",
|
|
7
|
-
"
|
|
8
|
-
"skipFiles": ["<node_internals>/**"],
|
|
9
|
-
"
|
|
10
|
-
"program": "${relativeFile}"
|
|
8
|
+
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/tsx",
|
|
9
|
+
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"],
|
|
10
|
+
"program": "${file}"
|
|
11
11
|
}
|
|
12
12
|
]
|
|
13
13
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ts-lib-unbuild",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.11",
|
|
5
5
|
"private": true,
|
|
6
6
|
"packageManager": "pnpm@8.13.1",
|
|
7
7
|
"sideEffects": false,
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"ofetch": "1.3.3"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@soybeanjs/cli": "1.0.
|
|
40
|
-
"@soybeanjs/eslint-config": "1.2.
|
|
39
|
+
"@soybeanjs/cli": "1.0.11",
|
|
40
|
+
"@soybeanjs/eslint-config": "1.2.5",
|
|
41
41
|
"@types/cli-progress": "3.11.5",
|
|
42
|
-
"@types/node": "20.11.
|
|
42
|
+
"@types/node": "20.11.28",
|
|
43
43
|
"eslint": "8.57.0",
|
|
44
44
|
"lint-staged": "15.2.2",
|
|
45
|
-
"simple-git-hooks": "2.
|
|
45
|
+
"simple-git-hooks": "2.11.0",
|
|
46
46
|
"tsx": "4.7.1",
|
|
47
|
-
"typescript": "5.
|
|
47
|
+
"typescript": "5.4.2",
|
|
48
48
|
"unbuild": "2.0.0"
|
|
49
49
|
},
|
|
50
50
|
"simple-git-hooks": {
|
|
@@ -1,17 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"recommendations": [
|
|
3
|
+
"afzalsayed96.icones",
|
|
4
|
+
"antfu.iconify",
|
|
3
5
|
"antfu.unocss",
|
|
4
6
|
"dbaeumer.vscode-eslint",
|
|
5
7
|
"editorconfig.editorconfig",
|
|
6
8
|
"esbenp.prettier-vscode",
|
|
7
|
-
"formulahendry.auto-complete-tag",
|
|
8
9
|
"formulahendry.auto-close-tag",
|
|
10
|
+
"formulahendry.auto-complete-tag",
|
|
9
11
|
"formulahendry.auto-rename-tag",
|
|
10
|
-
"
|
|
11
|
-
"mariusalchimavicius.json-to-ts",
|
|
12
|
+
"lokalise.i18n-ally",
|
|
12
13
|
"mhutchie.git-graph",
|
|
14
|
+
"mikestead.dotenv",
|
|
15
|
+
"naumovs.color-highlight",
|
|
16
|
+
"pkief.material-icon-theme",
|
|
13
17
|
"sdras.vue-vscode-snippets",
|
|
14
18
|
"vue.volar",
|
|
15
|
-
"
|
|
19
|
+
"whtouche.vscode-js-console-utils",
|
|
20
|
+
"zhuangtongfa.material-theme"
|
|
16
21
|
]
|
|
17
22
|
}
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
"version": "0.2.0",
|
|
3
3
|
"configurations": [
|
|
4
4
|
{
|
|
5
|
+
"name": "Vue Debugger",
|
|
5
6
|
"type": "chrome",
|
|
6
7
|
"request": "launch",
|
|
7
|
-
"name": "Vue debugger",
|
|
8
8
|
"url": "http://localhost:9527",
|
|
9
9
|
"webRoot": "${workspaceFolder}"
|
|
10
10
|
},
|
|
11
11
|
{
|
|
12
|
+
"name": "TS Debugger",
|
|
12
13
|
"type": "node",
|
|
13
14
|
"request": "launch",
|
|
14
|
-
"
|
|
15
|
-
"skipFiles": ["<node_internals>/**"],
|
|
16
|
-
"
|
|
17
|
-
"program": "${relativeFile}"
|
|
15
|
+
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/tsx",
|
|
16
|
+
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"],
|
|
17
|
+
"program": "${file}"
|
|
18
18
|
}
|
|
19
19
|
]
|
|
20
20
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "template-vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.11",
|
|
5
5
|
"private": true,
|
|
6
6
|
"packageManager": "pnpm@8.13.1",
|
|
7
7
|
"scripts": {
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
"vue-router": "4.3.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@soybeanjs/cli": "1.0.
|
|
26
|
-
"@soybeanjs/eslint-config": "1.2.
|
|
27
|
-
"@types/node": "20.11.
|
|
25
|
+
"@soybeanjs/cli": "1.0.11",
|
|
26
|
+
"@soybeanjs/eslint-config": "1.2.5",
|
|
27
|
+
"@types/node": "20.11.28",
|
|
28
28
|
"@vitejs/plugin-vue": "5.0.4",
|
|
29
29
|
"@vitejs/plugin-vue-jsx": "3.1.0",
|
|
30
30
|
"eslint": "8.57.0",
|
|
31
|
-
"eslint-plugin-vue": "9.
|
|
31
|
+
"eslint-plugin-vue": "9.23.0",
|
|
32
32
|
"lint-staged": "15.2.2",
|
|
33
|
-
"simple-git-hooks": "2.
|
|
34
|
-
"typescript": "5.
|
|
35
|
-
"vite": "5.1.
|
|
33
|
+
"simple-git-hooks": "2.11.0",
|
|
34
|
+
"typescript": "5.4.2",
|
|
35
|
+
"vite": "5.1.6",
|
|
36
36
|
"vue-eslint-parser": "9.4.2",
|
|
37
|
-
"vue-tsc": "2.0.
|
|
37
|
+
"vue-tsc": "2.0.6"
|
|
38
38
|
},
|
|
39
39
|
"simple-git-hooks": {
|
|
40
40
|
"commit-msg": "pnpm soy git-commit-verify",
|