create-rsbuild 2.2.0-beta.2 → 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.
Files changed (40) hide show
  1. package/README.md +67 -0
  2. package/dist/index.js +9 -3
  3. package/package.json +7 -7
  4. package/template-lit-js/package.json +1 -1
  5. package/template-lit-ts/package.json +1 -1
  6. package/template-octane-js/package.json +18 -0
  7. package/template-octane-js/pnpm-workspace.yaml +2 -0
  8. package/template-octane-js/rsbuild.config.js +8 -0
  9. package/template-octane-js/src/App.css +26 -0
  10. package/template-octane-js/src/App.tsrx +8 -0
  11. package/template-octane-js/src/index.js +7 -0
  12. package/template-octane-ts/package.json +22 -0
  13. package/template-octane-ts/pnpm-workspace.yaml +2 -0
  14. package/template-octane-ts/rsbuild.config.ts +7 -0
  15. package/template-octane-ts/src/App.css +26 -0
  16. package/template-octane-ts/src/App.tsrx +8 -0
  17. package/template-octane-ts/src/index.ts +7 -0
  18. package/template-octane-ts/tsconfig.json +32 -0
  19. package/template-preact-js/package.json +1 -1
  20. package/template-preact-ts/package.json +1 -1
  21. package/template-react-js/package.json +1 -1
  22. package/template-react-ts/package.json +1 -1
  23. package/template-rstest/react-js/package.json +3 -3
  24. package/template-rstest/react-ts/package.json +3 -3
  25. package/template-rstest/vanilla-js/package.json +3 -3
  26. package/template-rstest/vanilla-ts/package.json +3 -3
  27. package/template-rstest/vue-js/package.json +3 -3
  28. package/template-rstest/vue-ts/package.json +3 -3
  29. package/template-solid-js/package.json +2 -2
  30. package/template-solid-ts/package.json +2 -2
  31. package/template-solid2-js/package.json +3 -4
  32. package/template-solid2-js/rsbuild.config.js +1 -7
  33. package/template-solid2-ts/package.json +3 -4
  34. package/template-solid2-ts/rsbuild.config.ts +1 -7
  35. package/template-svelte-js/package.json +2 -2
  36. package/template-svelte-ts/package.json +2 -2
  37. package/template-vanilla-js/package.json +1 -1
  38. package/template-vanilla-ts/package.json +1 -1
  39. package/template-vue-js/package.json +1 -1
  40. package/template-vue-ts/package.json +2 -2
package/README.md CHANGED
@@ -34,6 +34,73 @@ npx create-rsbuild -d my-project -t react
34
34
  npx create-rsbuild --dir my-project --template react --no-git
35
35
  ```
36
36
 
37
+ ### Template examples
38
+
39
+ The following commands create a project without interactive prompts:
40
+
41
+ - **Vanilla**
42
+
43
+ ```bash
44
+ npx -y create-rsbuild@latest my-app -t vanilla-js
45
+ npx -y create-rsbuild@latest my-app -t vanilla-ts
46
+ ```
47
+
48
+ - **React**
49
+
50
+ ```bash
51
+ npx -y create-rsbuild@latest my-app -t react-js
52
+ npx -y create-rsbuild@latest my-app -t react-ts
53
+ ```
54
+
55
+ - **Vue**
56
+
57
+ ```bash
58
+ npx -y create-rsbuild@latest my-app -t vue-js
59
+ npx -y create-rsbuild@latest my-app -t vue-ts
60
+ ```
61
+
62
+ - **Lit**
63
+
64
+ ```bash
65
+ npx -y create-rsbuild@latest my-app -t lit-js
66
+ npx -y create-rsbuild@latest my-app -t lit-ts
67
+ ```
68
+
69
+ - **Preact**
70
+
71
+ ```bash
72
+ npx -y create-rsbuild@latest my-app -t preact-js
73
+ npx -y create-rsbuild@latest my-app -t preact-ts
74
+ ```
75
+
76
+ - **Svelte**
77
+
78
+ ```bash
79
+ npx -y create-rsbuild@latest my-app -t svelte-js
80
+ npx -y create-rsbuild@latest my-app -t svelte-ts
81
+ ```
82
+
83
+ - **Solid 1**
84
+
85
+ ```bash
86
+ npx -y create-rsbuild@latest my-app -t solid-js
87
+ npx -y create-rsbuild@latest my-app -t solid-ts
88
+ ```
89
+
90
+ - **Solid 2**
91
+
92
+ ```bash
93
+ npx -y create-rsbuild@latest my-app -t solid2-js
94
+ npx -y create-rsbuild@latest my-app -t solid2-ts
95
+ ```
96
+
97
+ - **Octane**
98
+
99
+ ```bash
100
+ npx -y create-rsbuild@latest my-app -t octane-js
101
+ npx -y create-rsbuild@latest my-app -t octane-ts
102
+ ```
103
+
37
104
  ## Documentation
38
105
 
39
106
  See [Documentation](https://rsbuild.rs/guide/start/quick-start).
package/dist/index.js CHANGED
@@ -144,11 +144,15 @@ async function getTemplateName({ template }) {
144
144
  },
145
145
  {
146
146
  value: 'solid',
147
- label: 'Solid'
147
+ label: 'Solid 1'
148
148
  },
149
149
  {
150
150
  value: 'solid2',
151
- label: 'Solid 2 (RC)'
151
+ label: 'Solid 2'
152
+ },
153
+ {
154
+ value: 'octane',
155
+ label: 'Octane'
152
156
  }
153
157
  ]
154
158
  }));
@@ -229,7 +233,9 @@ await create({
229
233
  'solid-js',
230
234
  'solid-ts',
231
235
  'solid2-js',
232
- 'solid2-ts'
236
+ 'solid2-ts',
237
+ 'octane-js',
238
+ 'octane-ts'
233
239
  ],
234
240
  getTemplateName: getTemplateName,
235
241
  mapESLintTemplate: mapESLintTemplate,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-rsbuild",
3
- "version": "2.2.0-beta.2",
3
+ "version": "2.2.0",
4
4
  "description": "Create a new Rsbuild project",
5
5
  "homepage": "https://rsbuild.rs",
6
6
  "bugs": {
@@ -25,18 +25,18 @@
25
25
  "bin.js"
26
26
  ],
27
27
  "dependencies": {
28
- "@rstackjs/create-toolkit": "2.2.3"
28
+ "@rstackjs/create-toolkit": "2.2.4"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/node": "^24.13.3",
32
32
  "typescript": "^6.0.3",
33
- "@rsbuild/core": "2.2.0-beta.2",
34
- "@rsbuild/plugin-react": "2.1.0",
33
+ "@rsbuild/core": "2.2.0",
35
34
  "@rsbuild/plugin-babel": "2.1.0",
35
+ "@rsbuild/plugin-react": "2.1.0",
36
+ "@rsbuild/plugin-svelte": "2.0.1",
36
37
  "@rsbuild/plugin-preact": "2.0.0",
37
- "@rsbuild/plugin-solid": "2.0.0-beta.1",
38
- "@rsbuild/plugin-vue": "2.0.1",
39
- "@rsbuild/plugin-svelte": "2.0.1"
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"
@@ -12,6 +12,6 @@
12
12
  "lit": "^3.3.3"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^2.2.0-beta.2"
15
+ "@rsbuild/core": "^2.2.0"
16
16
  }
17
17
  }
@@ -12,7 +12,7 @@
12
12
  "lit": "^3.3.3"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^2.2.0-beta.2",
15
+ "@rsbuild/core": "^2.2.0",
16
16
  "@types/node": "^24.13.3",
17
17
  "typescript": "^6.0.3"
18
18
  }
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "rsbuild-octane-js",
3
+ "version": "1.0.0",
4
+ "private": true,
5
+ "type": "module",
6
+ "scripts": {
7
+ "build": "rsbuild build",
8
+ "dev": "rsbuild",
9
+ "preview": "rsbuild preview"
10
+ },
11
+ "dependencies": {
12
+ "octane": "^0.1.44"
13
+ },
14
+ "devDependencies": {
15
+ "@octanejs/rsbuild-plugin": "^0.1.39",
16
+ "@rsbuild/core": "^2.2.0"
17
+ }
18
+ }
@@ -0,0 +1,2 @@
1
+ allowBuilds:
2
+ esbuild: true
@@ -0,0 +1,8 @@
1
+ // @ts-check
2
+ import { defineConfig } from '@rsbuild/core';
3
+ import { pluginOctane } from '@octanejs/rsbuild-plugin';
4
+
5
+ // Docs: https://rsbuild.rs/config/
6
+ export default defineConfig({
7
+ plugins: [pluginOctane()],
8
+ });
@@ -0,0 +1,26 @@
1
+ body {
2
+ margin: 0;
3
+ color: #fff;
4
+ font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
5
+ background-image: linear-gradient(to bottom, #020917, #101725);
6
+ }
7
+
8
+ .content {
9
+ display: flex;
10
+ min-height: 100vh;
11
+ line-height: 1.1;
12
+ text-align: center;
13
+ flex-direction: column;
14
+ justify-content: center;
15
+ }
16
+
17
+ .content h1 {
18
+ font-size: 3.6rem;
19
+ font-weight: 700;
20
+ }
21
+
22
+ .content p {
23
+ font-size: 1.2rem;
24
+ font-weight: 400;
25
+ opacity: 0.5;
26
+ }
@@ -0,0 +1,8 @@
1
+ import './App.css';
2
+
3
+ export function App() @{
4
+ <div class="content">
5
+ <h1>Rsbuild with Octane</h1>
6
+ <p>Start building amazing things with Rsbuild.</p>
7
+ </div>
8
+ }
@@ -0,0 +1,7 @@
1
+ import { createRoot } from 'octane';
2
+ import { App } from './App.tsrx';
3
+
4
+ const rootEl = document.getElementById('root');
5
+ if (rootEl) {
6
+ createRoot(rootEl).render(App);
7
+ }
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "rsbuild-octane-ts",
3
+ "version": "1.0.0",
4
+ "private": true,
5
+ "type": "module",
6
+ "scripts": {
7
+ "build": "rsbuild build",
8
+ "dev": "rsbuild",
9
+ "preview": "rsbuild preview",
10
+ "typecheck": "tsrx-tsc --noEmit -p tsconfig.json"
11
+ },
12
+ "dependencies": {
13
+ "octane": "^0.1.44"
14
+ },
15
+ "devDependencies": {
16
+ "@octanejs/rsbuild-plugin": "^0.1.39",
17
+ "@rsbuild/core": "^2.2.0",
18
+ "@tsrx/typescript-plugin": "^0.3.124",
19
+ "@types/node": "^24.13.3",
20
+ "typescript": "^5.9.3"
21
+ }
22
+ }
@@ -0,0 +1,2 @@
1
+ allowBuilds:
2
+ esbuild: true
@@ -0,0 +1,7 @@
1
+ import { defineConfig } from '@rsbuild/core';
2
+ import { pluginOctane } from '@octanejs/rsbuild-plugin';
3
+
4
+ // Docs: https://rsbuild.rs/config/
5
+ export default defineConfig({
6
+ plugins: [pluginOctane()],
7
+ });
@@ -0,0 +1,26 @@
1
+ body {
2
+ margin: 0;
3
+ color: #fff;
4
+ font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
5
+ background-image: linear-gradient(to bottom, #020917, #101725);
6
+ }
7
+
8
+ .content {
9
+ display: flex;
10
+ min-height: 100vh;
11
+ line-height: 1.1;
12
+ text-align: center;
13
+ flex-direction: column;
14
+ justify-content: center;
15
+ }
16
+
17
+ .content h1 {
18
+ font-size: 3.6rem;
19
+ font-weight: 700;
20
+ }
21
+
22
+ .content p {
23
+ font-size: 1.2rem;
24
+ font-weight: 400;
25
+ opacity: 0.5;
26
+ }
@@ -0,0 +1,8 @@
1
+ import './App.css';
2
+
3
+ export function App() @{
4
+ <div class="content">
5
+ <h1>Rsbuild with Octane</h1>
6
+ <p>Start building amazing things with Rsbuild.</p>
7
+ </div>
8
+ }
@@ -0,0 +1,7 @@
1
+ import { createRoot } from 'octane';
2
+ import { App } from './App.tsrx';
3
+
4
+ const rootEl = document.getElementById('root');
5
+ if (rootEl) {
6
+ createRoot(rootEl).render(App);
7
+ }
@@ -0,0 +1,32 @@
1
+ {
2
+ "compilerOptions": {
3
+ "lib": ["DOM", "DOM.Iterable", "ES2020"],
4
+ "jsx": "react-jsx",
5
+ "jsxImportSource": "octane",
6
+ "target": "ES2020",
7
+ "noEmit": true,
8
+ "skipLibCheck": true,
9
+ "types": ["@rsbuild/core/types", "node"],
10
+ "useDefineForClassFields": true,
11
+
12
+ /* modules */
13
+ "module": "ESNext",
14
+ "moduleDetection": "force",
15
+ "moduleResolution": "bundler",
16
+ "verbatimModuleSyntax": true,
17
+ "resolveJsonModule": true,
18
+ "allowImportingTsExtensions": true,
19
+ "isolatedModules": true,
20
+
21
+ /* type checking */
22
+ "strict": true,
23
+ "noUnusedLocals": true,
24
+ "noUnusedParameters": true,
25
+ "plugins": [
26
+ {
27
+ "name": "@tsrx/typescript-plugin"
28
+ }
29
+ ]
30
+ },
31
+ "include": ["src"]
32
+ }
@@ -12,7 +12,7 @@
12
12
  "preact": "^10.29.8"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^2.2.0-beta.2",
15
+ "@rsbuild/core": "^2.2.0",
16
16
  "@rsbuild/plugin-preact": "^2.0.0"
17
17
  }
18
18
  }
@@ -12,7 +12,7 @@
12
12
  "preact": "^10.29.8"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^2.2.0-beta.2",
15
+ "@rsbuild/core": "^2.2.0",
16
16
  "@rsbuild/plugin-preact": "^2.0.0",
17
17
  "@types/node": "^24.13.3",
18
18
  "typescript": "^6.0.3"
@@ -13,7 +13,7 @@
13
13
  "react-dom": "^19.2.8"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^2.2.0-beta.2",
16
+ "@rsbuild/core": "^2.2.0",
17
17
  "@rsbuild/plugin-react": "^2.1.0"
18
18
  }
19
19
  }
@@ -13,7 +13,7 @@
13
13
  "react-dom": "^19.2.8"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^2.2.0-beta.2",
16
+ "@rsbuild/core": "^2.2.0",
17
17
  "@rsbuild/plugin-react": "^2.1.0",
18
18
  "@types/node": "^24.13.3",
19
19
  "@types/react": "^19.2.18",
@@ -4,11 +4,11 @@
4
4
  "test:watch": "rstest --watch"
5
5
  },
6
6
  "devDependencies": {
7
- "@rstest/adapter-rsbuild": "^0.11.8",
8
- "@rstest/core": "^0.11.8",
7
+ "@rstest/adapter-rsbuild": "^0.11.9",
8
+ "@rstest/core": "^0.11.9",
9
9
  "@testing-library/dom": "^10.4.1",
10
10
  "@testing-library/jest-dom": "^7.0.1",
11
11
  "@testing-library/react": "^16.3.2",
12
- "happy-dom": "^20.11.2"
12
+ "happy-dom": "^20.11.6"
13
13
  }
14
14
  }
@@ -4,11 +4,11 @@
4
4
  "test:watch": "rstest --watch"
5
5
  },
6
6
  "devDependencies": {
7
- "@rstest/adapter-rsbuild": "^0.11.8",
8
- "@rstest/core": "^0.11.8",
7
+ "@rstest/adapter-rsbuild": "^0.11.9",
8
+ "@rstest/core": "^0.11.9",
9
9
  "@testing-library/dom": "^10.4.1",
10
10
  "@testing-library/jest-dom": "^7.0.1",
11
11
  "@testing-library/react": "^16.3.2",
12
- "happy-dom": "^20.11.2"
12
+ "happy-dom": "^20.11.6"
13
13
  }
14
14
  }
@@ -4,10 +4,10 @@
4
4
  "test:watch": "rstest --watch"
5
5
  },
6
6
  "devDependencies": {
7
- "@rstest/adapter-rsbuild": "^0.11.8",
8
- "@rstest/core": "^0.11.8",
7
+ "@rstest/adapter-rsbuild": "^0.11.9",
8
+ "@rstest/core": "^0.11.9",
9
9
  "@testing-library/dom": "^10.4.1",
10
10
  "@testing-library/jest-dom": "^7.0.1",
11
- "happy-dom": "^20.11.2"
11
+ "happy-dom": "^20.11.6"
12
12
  }
13
13
  }
@@ -4,10 +4,10 @@
4
4
  "test:watch": "rstest --watch"
5
5
  },
6
6
  "devDependencies": {
7
- "@rstest/adapter-rsbuild": "^0.11.8",
8
- "@rstest/core": "^0.11.8",
7
+ "@rstest/adapter-rsbuild": "^0.11.9",
8
+ "@rstest/core": "^0.11.9",
9
9
  "@testing-library/dom": "^10.4.1",
10
10
  "@testing-library/jest-dom": "^7.0.1",
11
- "happy-dom": "^20.11.2"
11
+ "happy-dom": "^20.11.6"
12
12
  }
13
13
  }
@@ -4,10 +4,10 @@
4
4
  "test:watch": "rstest --watch"
5
5
  },
6
6
  "devDependencies": {
7
- "@rstest/adapter-rsbuild": "^0.11.8",
8
- "@rstest/core": "^0.11.8",
7
+ "@rstest/adapter-rsbuild": "^0.11.9",
8
+ "@rstest/core": "^0.11.9",
9
9
  "@testing-library/jest-dom": "^7.0.1",
10
10
  "@vue/test-utils": "^2.4.11",
11
- "happy-dom": "^20.11.2"
11
+ "happy-dom": "^20.11.6"
12
12
  }
13
13
  }
@@ -4,10 +4,10 @@
4
4
  "test:watch": "rstest --watch"
5
5
  },
6
6
  "devDependencies": {
7
- "@rstest/adapter-rsbuild": "^0.11.8",
8
- "@rstest/core": "^0.11.8",
7
+ "@rstest/adapter-rsbuild": "^0.11.9",
8
+ "@rstest/core": "^0.11.9",
9
9
  "@testing-library/jest-dom": "^7.0.1",
10
10
  "@vue/test-utils": "^2.4.11",
11
- "happy-dom": "^20.11.2"
11
+ "happy-dom": "^20.11.6"
12
12
  }
13
13
  }
@@ -9,10 +9,10 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "dependencies": {
12
- "solid-js": "^1.9.14"
12
+ "solid-js": "^1.9.15"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^2.2.0-beta.2",
15
+ "@rsbuild/core": "^2.2.0",
16
16
  "@rsbuild/plugin-babel": "^2.1.0",
17
17
  "@rsbuild/plugin-solid": "^1.2.2"
18
18
  }
@@ -9,10 +9,10 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "dependencies": {
12
- "solid-js": "^1.9.14"
12
+ "solid-js": "^1.9.15"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^2.2.0-beta.2",
15
+ "@rsbuild/core": "^2.2.0",
16
16
  "@rsbuild/plugin-babel": "^2.1.0",
17
17
  "@rsbuild/plugin-solid": "^1.2.2",
18
18
  "@types/node": "^24.13.3",
@@ -10,11 +10,10 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "@solidjs/web": "^2.0.0-rc.0",
13
- "solid-js": "^2.0.0-rc.0"
13
+ "solid-js": "^2.0.0-rc.1"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^2.2.0-beta.2",
17
- "@rsbuild/plugin-babel": "^2.1.0",
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
  });
@@ -10,12 +10,11 @@
10
10
  },
11
11
  "dependencies": {
12
12
  "@solidjs/web": "^2.0.0-rc.0",
13
- "solid-js": "^2.0.0-rc.0"
13
+ "solid-js": "^2.0.0-rc.1"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^2.2.0-beta.2",
17
- "@rsbuild/plugin-babel": "^2.1.0",
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
  });
@@ -9,10 +9,10 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "dependencies": {
12
- "svelte": "^5.56.9"
12
+ "svelte": "^5.56.10"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^2.2.0-beta.2",
15
+ "@rsbuild/core": "^2.2.0",
16
16
  "@rsbuild/plugin-svelte": "^2.0.1"
17
17
  }
18
18
  }
@@ -10,10 +10,10 @@
10
10
  "svelte-check": "svelte-check --tsconfig ./tsconfig.json"
11
11
  },
12
12
  "dependencies": {
13
- "svelte": "^5.56.9"
13
+ "svelte": "^5.56.10"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^2.2.0-beta.2",
16
+ "@rsbuild/core": "^2.2.0",
17
17
  "@rsbuild/plugin-svelte": "^2.0.1",
18
18
  "@types/node": "^24.13.3",
19
19
  "svelte-check": "^4.7.6",
@@ -9,6 +9,6 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "devDependencies": {
12
- "@rsbuild/core": "^2.2.0-beta.2"
12
+ "@rsbuild/core": "^2.2.0"
13
13
  }
14
14
  }
@@ -9,7 +9,7 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "devDependencies": {
12
- "@rsbuild/core": "^2.2.0-beta.2",
12
+ "@rsbuild/core": "^2.2.0",
13
13
  "@types/node": "^24.13.3",
14
14
  "typescript": "^6.0.3"
15
15
  }
@@ -12,7 +12,7 @@
12
12
  "vue": "^3.5.41"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^2.2.0-beta.2",
15
+ "@rsbuild/core": "^2.2.0",
16
16
  "@rsbuild/plugin-vue": "^2.0.1"
17
17
  }
18
18
  }
@@ -12,10 +12,10 @@
12
12
  "vue": "^3.5.41"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^2.2.0-beta.2",
15
+ "@rsbuild/core": "^2.2.0",
16
16
  "@rsbuild/plugin-vue": "^2.0.1",
17
17
  "@types/node": "^24.13.3",
18
18
  "typescript": "^6.0.3",
19
- "vue-tsc": "^3.3.10"
19
+ "vue-tsc": "^3.3.11"
20
20
  }
21
21
  }