create-rsbuild 1.6.4 → 1.6.6
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/dist/index.js +8 -1
- package/package.json +6 -6
- package/template-lit-js/package.json +1 -1
- package/template-lit-ts/package.json +1 -1
- package/template-preact-js/package.json +2 -2
- package/template-preact-ts/package.json +2 -2
- package/template-react-js/package.json +3 -3
- package/template-react-ts/package.json +4 -4
- package/template-react18-js/package.json +1 -1
- package/template-react18-ts/package.json +1 -1
- package/template-solid-js/package.json +1 -1
- package/template-solid-ts/package.json +1 -1
- package/template-svelte-js/package.json +2 -2
- package/template-svelte-ts/package.json +2 -2
- package/template-vanilla-js/package.json +1 -1
- package/template-vanilla-ts/package.json +1 -1
- package/template-vue2-js/package.json +1 -1
- package/template-vue2-ts/package.json +1 -1
- package/template-vue3-js/package.json +2 -2
- package/template-vue3-ts/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -110,5 +110,12 @@ create({
|
|
|
110
110
|
'solid-ts'
|
|
111
111
|
],
|
|
112
112
|
getTemplateName: getTemplateName,
|
|
113
|
-
mapESLintTemplate: mapESLintTemplate
|
|
113
|
+
mapESLintTemplate: mapESLintTemplate,
|
|
114
|
+
extraTools: [
|
|
115
|
+
{
|
|
116
|
+
value: 'storybook',
|
|
117
|
+
label: 'Add Storybook for component development',
|
|
118
|
+
command: 'npm create storybook@latest -- --skip-install --features docs'
|
|
119
|
+
}
|
|
120
|
+
]
|
|
114
121
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rsbuild",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.6",
|
|
4
4
|
"description": "Create a new Rsbuild project",
|
|
5
5
|
"homepage": "https://rsbuild.rs",
|
|
6
6
|
"repository": {
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
"bin.js"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"create-rstack": "1.7.
|
|
26
|
+
"create-rstack": "1.7.14"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@rsbuild/plugin-react": "^1.1.0",
|
|
30
|
-
"@rslib/core": "0.18.
|
|
30
|
+
"@rslib/core": "0.18.3",
|
|
31
31
|
"@types/node": "^24.10.1",
|
|
32
32
|
"typescript": "^5.9.3",
|
|
33
|
-
"@rsbuild/core": "1.6.
|
|
33
|
+
"@rsbuild/core": "1.6.14",
|
|
34
34
|
"@rsbuild/plugin-preact": "1.6.0",
|
|
35
35
|
"@rsbuild/plugin-babel": "1.0.6",
|
|
36
|
-
"@rsbuild/plugin-vue": "1.2.0",
|
|
37
36
|
"@rsbuild/plugin-solid": "1.0.6",
|
|
38
|
-
"@rsbuild/plugin-svelte": "1.0.11"
|
|
37
|
+
"@rsbuild/plugin-svelte": "1.0.11",
|
|
38
|
+
"@rsbuild/plugin-vue": "1.2.1"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">=18.12.0"
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"preview": "rsbuild preview"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"preact": "^10.
|
|
12
|
+
"preact": "^10.28.0"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@rsbuild/core": "^1.6.
|
|
15
|
+
"@rsbuild/core": "^1.6.12",
|
|
16
16
|
"@rsbuild/plugin-preact": "^1.6.0",
|
|
17
17
|
"typescript": "^5.9.3"
|
|
18
18
|
}
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
"preview": "rsbuild preview"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"react": "^19.2.
|
|
13
|
-
"react-dom": "^19.2.
|
|
12
|
+
"react": "^19.2.1",
|
|
13
|
+
"react-dom": "^19.2.1"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@rsbuild/core": "^1.6.
|
|
16
|
+
"@rsbuild/core": "^1.6.12",
|
|
17
17
|
"@rsbuild/plugin-react": "^1.4.2"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -9,13 +9,13 @@
|
|
|
9
9
|
"preview": "rsbuild preview"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"react": "^19.2.
|
|
13
|
-
"react-dom": "^19.2.
|
|
12
|
+
"react": "^19.2.1",
|
|
13
|
+
"react-dom": "^19.2.1"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@rsbuild/core": "^1.6.
|
|
16
|
+
"@rsbuild/core": "^1.6.12",
|
|
17
17
|
"@rsbuild/plugin-react": "^1.4.2",
|
|
18
|
-
"@types/react": "^19.2.
|
|
18
|
+
"@types/react": "^19.2.7",
|
|
19
19
|
"@types/react-dom": "^19.2.3",
|
|
20
20
|
"typescript": "^5.9.3"
|
|
21
21
|
}
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
"svelte-check": "svelte-check --tsconfig ./tsconfig.json"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"svelte": "^5.
|
|
13
|
+
"svelte": "^5.45.5"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@rsbuild/core": "^1.6.
|
|
16
|
+
"@rsbuild/core": "^1.6.12",
|
|
17
17
|
"@rsbuild/plugin-svelte": "^1.0.11",
|
|
18
18
|
"svelte-check": "^4.3.4",
|
|
19
19
|
"typescript": "^5.9.3"
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"preview": "rsbuild preview"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"vue": "^3.5.
|
|
12
|
+
"vue": "^3.5.25"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@rsbuild/core": "^1.6.
|
|
15
|
+
"@rsbuild/core": "^1.6.12",
|
|
16
16
|
"@rsbuild/plugin-vue": "^1.2.0",
|
|
17
17
|
"typescript": "^5.9.3"
|
|
18
18
|
}
|