create-rsbuild 2.2.0-rc.0 → 2.2.0
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 +7 -7
- package/template-lit-js/package.json +1 -1
- package/template-lit-ts/package.json +1 -1
- package/template-octane-js/package.json +1 -1
- package/template-octane-ts/package.json +1 -1
- package/template-preact-js/package.json +1 -1
- package/template-preact-ts/package.json +1 -1
- package/template-react-js/package.json +1 -1
- package/template-react-ts/package.json +1 -1
- package/template-solid-js/package.json +1 -1
- package/template-solid-ts/package.json +1 -1
- package/template-solid2-js/package.json +2 -3
- package/template-solid2-js/rsbuild.config.js +1 -7
- package/template-solid2-ts/package.json +2 -3
- package/template-solid2-ts/rsbuild.config.ts +1 -7
- package/template-svelte-js/package.json +1 -1
- package/template-svelte-ts/package.json +1 -1
- package/template-vanilla-js/package.json +1 -1
- package/template-vanilla-ts/package.json +1 -1
- package/template-vue-js/package.json +1 -1
- package/template-vue-ts/package.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rsbuild",
|
|
3
|
-
"version": "2.2.0
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Create a new Rsbuild project",
|
|
5
5
|
"homepage": "https://rsbuild.rs",
|
|
6
6
|
"bugs": {
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@types/node": "^24.13.3",
|
|
32
32
|
"typescript": "^6.0.3",
|
|
33
|
-
"@rsbuild/core": "2.2.0
|
|
34
|
-
"@rsbuild/plugin-preact": "2.0.0",
|
|
35
|
-
"@rsbuild/plugin-svelte": "2.0.1",
|
|
36
|
-
"@rsbuild/plugin-solid": "2.0.0-beta.1",
|
|
37
|
-
"@rsbuild/plugin-vue": "2.0.1",
|
|
33
|
+
"@rsbuild/core": "2.2.0",
|
|
38
34
|
"@rsbuild/plugin-babel": "2.1.0",
|
|
39
|
-
"@rsbuild/plugin-react": "2.1.0"
|
|
35
|
+
"@rsbuild/plugin-react": "2.1.0",
|
|
36
|
+
"@rsbuild/plugin-svelte": "2.0.1",
|
|
37
|
+
"@rsbuild/plugin-preact": "2.0.0",
|
|
38
|
+
"@rsbuild/plugin-solid": "2.0.0-beta.2",
|
|
39
|
+
"@rsbuild/plugin-vue": "2.0.1"
|
|
40
40
|
},
|
|
41
41
|
"engines": {
|
|
42
42
|
"node": "^20.19.0 || >=22.12.0"
|
|
@@ -13,8 +13,7 @@
|
|
|
13
13
|
"solid-js": "^2.0.0-rc.1"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@rsbuild/core": "^2.2.0
|
|
17
|
-
"@rsbuild/plugin-
|
|
18
|
-
"@rsbuild/plugin-solid": "^2.0.0-beta.1"
|
|
16
|
+
"@rsbuild/core": "^2.2.0",
|
|
17
|
+
"@rsbuild/plugin-solid": "^2.0.0-beta.2"
|
|
19
18
|
}
|
|
20
19
|
}
|
|
@@ -1,14 +1,8 @@
|
|
|
1
1
|
// @ts-check
|
|
2
2
|
import { defineConfig } from '@rsbuild/core';
|
|
3
|
-
import { pluginBabel } from '@rsbuild/plugin-babel';
|
|
4
3
|
import { pluginSolid } from '@rsbuild/plugin-solid';
|
|
5
4
|
|
|
6
5
|
// Docs: https://rsbuild.rs/config/
|
|
7
6
|
export default defineConfig({
|
|
8
|
-
plugins: [
|
|
9
|
-
pluginBabel({
|
|
10
|
-
include: /\.(?:jsx|tsx)$/,
|
|
11
|
-
}),
|
|
12
|
-
pluginSolid(),
|
|
13
|
-
],
|
|
7
|
+
plugins: [pluginSolid()],
|
|
14
8
|
});
|
|
@@ -13,9 +13,8 @@
|
|
|
13
13
|
"solid-js": "^2.0.0-rc.1"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@rsbuild/core": "^2.2.0
|
|
17
|
-
"@rsbuild/plugin-
|
|
18
|
-
"@rsbuild/plugin-solid": "^2.0.0-beta.1",
|
|
16
|
+
"@rsbuild/core": "^2.2.0",
|
|
17
|
+
"@rsbuild/plugin-solid": "^2.0.0-beta.2",
|
|
19
18
|
"@types/node": "^24.13.3",
|
|
20
19
|
"typescript": "^6.0.3"
|
|
21
20
|
}
|
|
@@ -1,13 +1,7 @@
|
|
|
1
1
|
import { defineConfig } from '@rsbuild/core';
|
|
2
|
-
import { pluginBabel } from '@rsbuild/plugin-babel';
|
|
3
2
|
import { pluginSolid } from '@rsbuild/plugin-solid';
|
|
4
3
|
|
|
5
4
|
// Docs: https://rsbuild.rs/config/
|
|
6
5
|
export default defineConfig({
|
|
7
|
-
plugins: [
|
|
8
|
-
pluginBabel({
|
|
9
|
-
include: /\.(?:jsx|tsx)$/,
|
|
10
|
-
}),
|
|
11
|
-
pluginSolid(),
|
|
12
|
-
],
|
|
6
|
+
plugins: [pluginSolid()],
|
|
13
7
|
});
|