create-rsbuild 1.6.2 → 1.6.3
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 +2 -2
- package/package.json +5 -5
- package/template-common/AGENTS.md +2 -2
- package/template-lit-js/package.json +1 -1
- package/template-lit-js/{rsbuild.config.mjs → rsbuild.config.js} +1 -0
- package/template-lit-ts/package.json +1 -1
- package/template-lit-ts/rsbuild.config.ts +1 -0
- package/template-preact-js/package.json +1 -1
- package/template-preact-js/{rsbuild.config.mjs → rsbuild.config.js} +1 -0
- package/template-preact-ts/package.json +1 -1
- package/template-preact-ts/rsbuild.config.ts +1 -0
- package/template-react-js/package.json +2 -2
- package/template-react-js/{rsbuild.config.mjs → rsbuild.config.js} +1 -0
- package/template-react-ts/package.json +4 -4
- package/template-react-ts/rsbuild.config.ts +1 -0
- package/template-react18-js/package.json +2 -2
- package/template-react18-js/{rsbuild.config.mjs → rsbuild.config.js} +1 -0
- package/template-react18-ts/package.json +2 -2
- package/template-react18-ts/rsbuild.config.ts +1 -0
- package/template-solid-js/package.json +1 -1
- package/template-solid-js/{rsbuild.config.mjs → rsbuild.config.js} +1 -0
- package/template-solid-ts/package.json +1 -1
- package/template-solid-ts/rsbuild.config.ts +1 -0
- package/template-svelte-js/package.json +2 -2
- package/template-svelte-js/{rsbuild.config.mjs → rsbuild.config.js} +1 -0
- package/template-svelte-ts/package.json +3 -3
- package/template-svelte-ts/rsbuild.config.ts +1 -0
- package/template-vanilla-js/package.json +1 -1
- package/template-vanilla-js/{rsbuild.config.mjs → rsbuild.config.js} +1 -0
- package/template-vanilla-ts/package.json +1 -1
- package/template-vanilla-ts/rsbuild.config.ts +1 -0
- package/template-vue2-js/package.json +1 -1
- package/template-vue2-js/{rsbuild.config.mjs → rsbuild.config.js} +1 -0
- package/template-vue2-ts/package.json +1 -1
- package/template-vue2-ts/rsbuild.config.ts +1 -0
- package/template-vue3-js/package.json +2 -2
- package/template-vue3-js/{rsbuild.config.mjs → rsbuild.config.js} +1 -0
- package/template-vue3-ts/package.json +2 -2
- package/template-vue3-ts/rsbuild.config.ts +1 -0
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rsbuild",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.3",
|
|
4
4
|
"description": "Create a new Rsbuild project",
|
|
5
5
|
"homepage": "https://rsbuild.rs",
|
|
6
6
|
"repository": {
|
|
@@ -23,16 +23,16 @@
|
|
|
23
23
|
"bin.js"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"create-rstack": "1.7.
|
|
26
|
+
"create-rstack": "1.7.7"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@rsbuild/plugin-react": "^1.1.0",
|
|
30
|
-
"@rslib/core": "0.17.
|
|
30
|
+
"@rslib/core": "0.17.1",
|
|
31
31
|
"@types/node": "^24.9.2",
|
|
32
32
|
"typescript": "^5.9.3",
|
|
33
|
-
"@rsbuild/core": "1.6.1",
|
|
34
|
-
"@rsbuild/plugin-preact": "1.6.0",
|
|
35
33
|
"@rsbuild/plugin-babel": "1.0.6",
|
|
34
|
+
"@rsbuild/core": "1.6.5",
|
|
35
|
+
"@rsbuild/plugin-preact": "1.6.0",
|
|
36
36
|
"@rsbuild/plugin-solid": "1.0.6",
|
|
37
37
|
"@rsbuild/plugin-vue": "1.2.0",
|
|
38
38
|
"@rsbuild/plugin-svelte": "1.0.11"
|
|
@@ -10,5 +10,5 @@ You are an expert in JavaScript, Rsbuild, and web application development. You w
|
|
|
10
10
|
|
|
11
11
|
## Docs
|
|
12
12
|
|
|
13
|
-
- Rsbuild:
|
|
14
|
-
- Rspack:
|
|
13
|
+
- Rsbuild: https://rsbuild.rs/llms.txt
|
|
14
|
+
- Rspack: https://rspack.rs/llms.txt
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"react-dom": "^19.2.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@rsbuild/core": "^1.6.
|
|
17
|
-
"@rsbuild/plugin-react": "^1.4.
|
|
18
|
-
"@types/react": "^19.2.
|
|
19
|
-
"@types/react-dom": "^19.2.
|
|
16
|
+
"@rsbuild/core": "^1.6.4",
|
|
17
|
+
"@rsbuild/plugin-react": "^1.4.2",
|
|
18
|
+
"@types/react": "^19.2.4",
|
|
19
|
+
"@types/react-dom": "^19.2.3",
|
|
20
20
|
"typescript": "^5.9.3"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"react-dom": "^18.3.1"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@rsbuild/core": "^1.6.
|
|
17
|
-
"@rsbuild/plugin-react": "^1.4.
|
|
16
|
+
"@rsbuild/core": "^1.6.4",
|
|
17
|
+
"@rsbuild/plugin-react": "^1.4.2",
|
|
18
18
|
"@types/react": "^18.3.18",
|
|
19
19
|
"@types/react-dom": "^18.3.5",
|
|
20
20
|
"typescript": "^5.9.3"
|
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
"svelte-check": "svelte-check --tsconfig ./tsconfig.json"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"svelte": "^5.43.
|
|
13
|
+
"svelte": "^5.43.6"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@rsbuild/core": "^1.6.
|
|
16
|
+
"@rsbuild/core": "^1.6.4",
|
|
17
17
|
"@rsbuild/plugin-svelte": "^1.0.11",
|
|
18
|
-
"svelte-check": "^4.3.
|
|
18
|
+
"svelte-check": "^4.3.4",
|
|
19
19
|
"typescript": "^5.9.3"
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"preview": "rsbuild preview"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"vue": "^3.5.
|
|
12
|
+
"vue": "^3.5.24"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@rsbuild/core": "^1.6.
|
|
15
|
+
"@rsbuild/core": "^1.6.4",
|
|
16
16
|
"@rsbuild/plugin-vue": "^1.2.0",
|
|
17
17
|
"typescript": "^5.9.3"
|
|
18
18
|
}
|