create-rsbuild 1.6.6 → 1.6.7

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 (49) hide show
  1. package/README.md +1 -1
  2. package/dist/index.js +34 -2
  3. package/package.json +6 -6
  4. package/template-lit-js/package.json +1 -1
  5. package/template-lit-ts/package.json +1 -1
  6. package/template-preact-js/package.json +1 -1
  7. package/template-preact-ts/package.json +1 -1
  8. package/template-react-js/package.json +3 -3
  9. package/template-react-ts/package.json +3 -3
  10. package/template-react18-js/package.json +1 -1
  11. package/template-react18-ts/package.json +1 -1
  12. package/template-rstest/AGENTS.md +10 -0
  13. package/template-rstest/react-js/package.json +16 -0
  14. package/template-rstest/react-js/rstest.config.js +9 -0
  15. package/template-rstest/react-js/rstest.setup.js +4 -0
  16. package/template-rstest/react-js/tests/index.test.jsx +9 -0
  17. package/template-rstest/react-ts/package.json +16 -0
  18. package/template-rstest/react-ts/rstest.config.ts +9 -0
  19. package/template-rstest/react-ts/rstest.setup.ts +4 -0
  20. package/template-rstest/react-ts/tests/index.test.tsx +9 -0
  21. package/template-rstest/react-ts/tests/tsconfig.json +7 -0
  22. package/template-rstest/vanilla-js/package.json +15 -0
  23. package/template-rstest/vanilla-js/rstest.config.js +7 -0
  24. package/template-rstest/vanilla-js/rstest.setup.js +4 -0
  25. package/template-rstest/vanilla-js/tests/dom.test.js +12 -0
  26. package/template-rstest/vanilla-ts/package.json +15 -0
  27. package/template-rstest/vanilla-ts/rstest.config.ts +7 -0
  28. package/template-rstest/vanilla-ts/rstest.setup.ts +4 -0
  29. package/template-rstest/vanilla-ts/tests/dom.test.ts +12 -0
  30. package/template-rstest/vanilla-ts/tests/tsconfig.json +7 -0
  31. package/template-rstest/vue-js/package.json +16 -0
  32. package/template-rstest/vue-js/rstest.config.js +15 -0
  33. package/template-rstest/vue-js/rstest.setup.js +4 -0
  34. package/template-rstest/vue-js/tests/index.test.js +9 -0
  35. package/template-rstest/vue-ts/package.json +16 -0
  36. package/template-rstest/vue-ts/rstest.config.ts +15 -0
  37. package/template-rstest/vue-ts/rstest.setup.ts +4 -0
  38. package/template-rstest/vue-ts/tests/index.test.ts +9 -0
  39. package/template-rstest/vue-ts/tests/tsconfig.json +7 -0
  40. package/template-solid-js/package.json +1 -1
  41. package/template-solid-ts/package.json +1 -1
  42. package/template-svelte-js/package.json +2 -2
  43. package/template-svelte-ts/package.json +2 -2
  44. package/template-vanilla-js/package.json +1 -1
  45. package/template-vanilla-ts/package.json +1 -1
  46. package/template-vue2-js/package.json +1 -1
  47. package/template-vue2-ts/package.json +1 -1
  48. package/template-vue3-js/package.json +2 -2
  49. package/template-vue3-ts/package.json +2 -2
package/README.md CHANGED
@@ -11,7 +11,7 @@ Create a new Rsbuild project.
11
11
  <img src="https://img.shields.io/npm/v/create-rsbuild?style=flat-square&colorA=564341&colorB=EDED91" alt="npm version" />
12
12
  </a>
13
13
  <img src="https://img.shields.io/badge/License-MIT-blue.svg?style=flat-square&colorA=564341&colorB=EDED91" alt="license" />
14
- <a href="https://npmcharts.com/compare/create-rsbuild?minimal=true"><img src="https://img.shields.io/npm/dm/create-rsbuild.svg?style=flat-square&colorA=564341&colorB=EDED91" alt="downloads" /></a>
14
+ <a href="https://npmcharts.com/compare/create-rsbuild"><img src="https://img.shields.io/npm/dm/create-rsbuild.svg?style=flat-square&colorA=564341&colorB=EDED91" alt="downloads" /></a>
15
15
  </p>
16
16
 
17
17
  ## Usage
package/dist/index.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import node_path from "node:path";
2
2
  import { fileURLToPath } from "node:url";
3
- import { checkCancel, create, select as external_create_rstack_select } from "create-rstack";
3
+ import { checkCancel, copyFolder, create, select as external_create_rstack_select } from "create-rstack";
4
4
  const src_dirname = node_path.dirname(fileURLToPath(import.meta.url));
5
5
  const frameworkAlias = {
6
6
  vue: 'vue3',
@@ -90,6 +90,22 @@ function mapESLintTemplate(templateName) {
90
90
  const language = templateName.split('-')[1];
91
91
  return `vanilla-${language}`;
92
92
  }
93
+ function mapRstestTemplate(templateName) {
94
+ switch(templateName){
95
+ case 'react-js':
96
+ case 'react18-js':
97
+ return 'react-js';
98
+ case 'react-ts':
99
+ case 'react18-ts':
100
+ return 'react-ts';
101
+ case 'vue3-js':
102
+ return 'vue-js';
103
+ case 'vue3-ts':
104
+ return 'vue-ts';
105
+ }
106
+ const language = templateName.split('-')[1];
107
+ return `vanilla-${language}`;
108
+ }
93
109
  create({
94
110
  root: node_path.resolve(src_dirname, '..'),
95
111
  name: 'rsbuild',
@@ -112,9 +128,25 @@ create({
112
128
  getTemplateName: getTemplateName,
113
129
  mapESLintTemplate: mapESLintTemplate,
114
130
  extraTools: [
131
+ {
132
+ value: 'rstest',
133
+ label: 'Rstest - testing',
134
+ order: 'pre',
135
+ action: ({ templateName, distFolder, addAgentsMdSearchDirs })=>{
136
+ const rstestTemplate = mapRstestTemplate(templateName);
137
+ const toolFolder = node_path.join(src_dirname, '..', 'template-rstest');
138
+ const subFolder = node_path.join(toolFolder, rstestTemplate);
139
+ copyFolder({
140
+ from: subFolder,
141
+ to: distFolder,
142
+ isMergePackageJson: true
143
+ });
144
+ addAgentsMdSearchDirs(toolFolder);
145
+ }
146
+ },
115
147
  {
116
148
  value: 'storybook',
117
- label: 'Add Storybook for component development',
149
+ label: 'Storybook - component development',
118
150
  command: 'npm create storybook@latest -- --skip-install --features docs'
119
151
  }
120
152
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-rsbuild",
3
- "version": "1.6.6",
3
+ "version": "1.6.7",
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.14"
26
+ "create-rstack": "1.7.19"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@rsbuild/plugin-react": "^1.1.0",
30
- "@rslib/core": "0.18.3",
31
- "@types/node": "^24.10.1",
30
+ "@rslib/core": "0.18.4",
31
+ "@types/node": "^24.10.3",
32
32
  "typescript": "^5.9.3",
33
- "@rsbuild/core": "1.6.14",
34
- "@rsbuild/plugin-preact": "1.6.0",
35
33
  "@rsbuild/plugin-babel": "1.0.6",
34
+ "@rsbuild/plugin-preact": "1.6.0",
35
+ "@rsbuild/core": "1.6.14",
36
36
  "@rsbuild/plugin-solid": "1.0.6",
37
37
  "@rsbuild/plugin-svelte": "1.0.11",
38
38
  "@rsbuild/plugin-vue": "1.2.1"
@@ -12,6 +12,6 @@
12
12
  "lit": "^3.3.1"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.12"
15
+ "@rsbuild/core": "^1.6.14"
16
16
  }
17
17
  }
@@ -12,7 +12,7 @@
12
12
  "lit": "^3.3.1"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.12",
15
+ "@rsbuild/core": "^1.6.14",
16
16
  "typescript": "^5.9.3"
17
17
  }
18
18
  }
@@ -12,7 +12,7 @@
12
12
  "preact": "^10.28.0"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.12",
15
+ "@rsbuild/core": "^1.6.14",
16
16
  "@rsbuild/plugin-preact": "^1.6.0"
17
17
  }
18
18
  }
@@ -12,7 +12,7 @@
12
12
  "preact": "^10.28.0"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.12",
15
+ "@rsbuild/core": "^1.6.14",
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.1",
13
- "react-dom": "^19.2.1"
12
+ "react": "^19.2.3",
13
+ "react-dom": "^19.2.3"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^1.6.12",
16
+ "@rsbuild/core": "^1.6.14",
17
17
  "@rsbuild/plugin-react": "^1.4.2"
18
18
  }
19
19
  }
@@ -9,11 +9,11 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "dependencies": {
12
- "react": "^19.2.1",
13
- "react-dom": "^19.2.1"
12
+ "react": "^19.2.3",
13
+ "react-dom": "^19.2.3"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^1.6.12",
16
+ "@rsbuild/core": "^1.6.14",
17
17
  "@rsbuild/plugin-react": "^1.4.2",
18
18
  "@types/react": "^19.2.7",
19
19
  "@types/react-dom": "^19.2.3",
@@ -13,7 +13,7 @@
13
13
  "react-dom": "^18.3.1"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^1.6.12",
16
+ "@rsbuild/core": "^1.6.14",
17
17
  "@rsbuild/plugin-react": "^1.4.2"
18
18
  }
19
19
  }
@@ -13,7 +13,7 @@
13
13
  "react-dom": "^18.3.1"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^1.6.12",
16
+ "@rsbuild/core": "^1.6.14",
17
17
  "@rsbuild/plugin-react": "^1.4.2",
18
18
  "@types/react": "^18.3.18",
19
19
  "@types/react-dom": "^18.3.5",
@@ -0,0 +1,10 @@
1
+ ## Docs
2
+
3
+ - Rstest: https://rstest.rs/llms.txt
4
+
5
+ ## Tools
6
+
7
+ ### Rstest
8
+
9
+ - Run `{{ packageManager }} run test` to run tests
10
+ - Run `{{ packageManager }} run test:watch` to run tests in watch mode
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "rsbuild-rstest-react-js",
3
+ "private": true,
4
+ "version": "1.0.0",
5
+ "scripts": {
6
+ "test": "rstest",
7
+ "test:watch": "rstest --watch"
8
+ },
9
+ "devDependencies": {
10
+ "@testing-library/dom": "^10.4.1",
11
+ "@testing-library/jest-dom": "^6.9.1",
12
+ "@testing-library/react": "^16.3.0",
13
+ "@rstest/core": "^0.7.2",
14
+ "jsdom": "^27.3.0"
15
+ }
16
+ }
@@ -0,0 +1,9 @@
1
+ import { pluginReact } from '@rsbuild/plugin-react';
2
+ import { defineConfig } from '@rstest/core';
3
+
4
+ // Docs: https://rstest.rs/config/
5
+ export default defineConfig({
6
+ plugins: [pluginReact()],
7
+ testEnvironment: 'jsdom',
8
+ setupFiles: ['./rstest.setup.js'],
9
+ });
@@ -0,0 +1,4 @@
1
+ import { expect } from '@rstest/core';
2
+ import * as jestDomMatchers from '@testing-library/jest-dom/matchers';
3
+
4
+ expect.extend(jestDomMatchers);
@@ -0,0 +1,9 @@
1
+ import { expect, test } from '@rstest/core';
2
+ import { render, screen } from '@testing-library/react';
3
+ import App from '../src/App';
4
+
5
+ test('renders the main page', () => {
6
+ const testMessage = 'Rsbuild with React';
7
+ render(<App />);
8
+ expect(screen.getByText(testMessage)).toBeInTheDocument();
9
+ });
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "rsbuild-rstest-react-ts",
3
+ "private": true,
4
+ "version": "1.0.0",
5
+ "scripts": {
6
+ "test": "rstest",
7
+ "test:watch": "rstest --watch"
8
+ },
9
+ "devDependencies": {
10
+ "@testing-library/dom": "^10.4.1",
11
+ "@testing-library/jest-dom": "^6.9.1",
12
+ "@testing-library/react": "^16.3.0",
13
+ "@rstest/core": "^0.7.2",
14
+ "jsdom": "^27.3.0"
15
+ }
16
+ }
@@ -0,0 +1,9 @@
1
+ import { pluginReact } from '@rsbuild/plugin-react';
2
+ import { defineConfig } from '@rstest/core';
3
+
4
+ // Docs: https://rstest.rs/config/
5
+ export default defineConfig({
6
+ plugins: [pluginReact()],
7
+ testEnvironment: 'jsdom',
8
+ setupFiles: ['./rstest.setup.ts'],
9
+ });
@@ -0,0 +1,4 @@
1
+ import { expect } from '@rstest/core';
2
+ import * as jestDomMatchers from '@testing-library/jest-dom/matchers';
3
+
4
+ expect.extend(jestDomMatchers);
@@ -0,0 +1,9 @@
1
+ import { expect, test } from '@rstest/core';
2
+ import { render, screen } from '@testing-library/react';
3
+ import App from '../src/App';
4
+
5
+ test('renders the main page', () => {
6
+ const testMessage = 'Rsbuild with React';
7
+ render(<App />);
8
+ expect(screen.getByText(testMessage)).toBeInTheDocument();
9
+ });
@@ -0,0 +1,7 @@
1
+ {
2
+ "extends": "../tsconfig.json",
3
+ "compilerOptions": {
4
+ "types": ["@testing-library/jest-dom"]
5
+ },
6
+ "include": ["./"]
7
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "rsbuild-rstest-vanilla-js",
3
+ "private": true,
4
+ "version": "1.0.0",
5
+ "scripts": {
6
+ "test": "rstest",
7
+ "test:watch": "rstest --watch"
8
+ },
9
+ "devDependencies": {
10
+ "@testing-library/dom": "^10.4.1",
11
+ "@testing-library/jest-dom": "^6.9.1",
12
+ "@rstest/core": "^0.7.2",
13
+ "jsdom": "^27.3.0"
14
+ }
15
+ }
@@ -0,0 +1,7 @@
1
+ import { defineConfig } from '@rstest/core';
2
+
3
+ // Docs: https://rstest.rs/config/
4
+ export default defineConfig({
5
+ testEnvironment: 'jsdom',
6
+ setupFiles: ['./rstest.setup.js'],
7
+ });
@@ -0,0 +1,4 @@
1
+ import { expect } from '@rstest/core';
2
+ import * as jestDomMatchers from '@testing-library/jest-dom/matchers';
3
+
4
+ expect.extend(jestDomMatchers);
@@ -0,0 +1,12 @@
1
+ import { expect, test } from '@rstest/core';
2
+ import { screen } from '@testing-library/dom';
3
+
4
+ test('test dom', () => {
5
+ document.body.innerHTML = `
6
+ <span data-testid="not-empty"><span data-testid="empty"></span></span>
7
+ <div data-testid="visible">Visible Example</div>
8
+ `;
9
+
10
+ expect(screen.queryByTestId('not-empty')).toBeInTheDocument();
11
+ expect(screen.getByText('Visible Example')).toBeVisible();
12
+ });
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "rsbuild-rstest-vanilla-ts",
3
+ "private": true,
4
+ "version": "1.0.0",
5
+ "scripts": {
6
+ "test": "rstest",
7
+ "test:watch": "rstest --watch"
8
+ },
9
+ "devDependencies": {
10
+ "@testing-library/dom": "^10.4.1",
11
+ "@testing-library/jest-dom": "^6.9.1",
12
+ "@rstest/core": "^0.7.2",
13
+ "jsdom": "^27.3.0"
14
+ }
15
+ }
@@ -0,0 +1,7 @@
1
+ import { defineConfig } from '@rstest/core';
2
+
3
+ // Docs: https://rstest.rs/config/
4
+ export default defineConfig({
5
+ testEnvironment: 'jsdom',
6
+ setupFiles: ['./rstest.setup.ts'],
7
+ });
@@ -0,0 +1,4 @@
1
+ import { expect } from '@rstest/core';
2
+ import * as jestDomMatchers from '@testing-library/jest-dom/matchers';
3
+
4
+ expect.extend(jestDomMatchers);
@@ -0,0 +1,12 @@
1
+ import { expect, test } from '@rstest/core';
2
+ import { screen } from '@testing-library/dom';
3
+
4
+ test('test dom', () => {
5
+ document.body.innerHTML = `
6
+ <span data-testid="not-empty"><span data-testid="empty"></span></span>
7
+ <div data-testid="visible">Visible Example</div>
8
+ `;
9
+
10
+ expect(screen.queryByTestId('not-empty')).toBeInTheDocument();
11
+ expect(screen.getByText('Visible Example')).toBeVisible();
12
+ });
@@ -0,0 +1,7 @@
1
+ {
2
+ "extends": "../tsconfig.json",
3
+ "compilerOptions": {
4
+ "types": ["@testing-library/jest-dom"]
5
+ },
6
+ "include": ["./"]
7
+ }
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "rsbuild-rstest-vue-js",
3
+ "private": true,
4
+ "version": "1.0.0",
5
+ "scripts": {
6
+ "test": "rstest",
7
+ "test:watch": "rstest --watch"
8
+ },
9
+ "devDependencies": {
10
+ "@testing-library/dom": "^10.4.1",
11
+ "@testing-library/jest-dom": "^6.9.1",
12
+ "@testing-library/vue": "^8.1.0",
13
+ "@rstest/core": "^0.7.2",
14
+ "jsdom": "^27.3.0"
15
+ }
16
+ }
@@ -0,0 +1,15 @@
1
+ import { pluginVue } from '@rsbuild/plugin-vue';
2
+ import { defineConfig } from '@rstest/core';
3
+
4
+ // Docs: https://rstest.rs/config/
5
+ export default defineConfig({
6
+ plugins: [
7
+ pluginVue({
8
+ vueLoaderOptions: {
9
+ isServerBuild: false,
10
+ },
11
+ }),
12
+ ],
13
+ testEnvironment: 'jsdom',
14
+ setupFiles: ['./rstest.setup.js'],
15
+ });
@@ -0,0 +1,4 @@
1
+ import { expect } from '@rstest/core';
2
+ import * as jestDomMatchers from '@testing-library/jest-dom/matchers';
3
+
4
+ expect.extend(jestDomMatchers);
@@ -0,0 +1,9 @@
1
+ import { expect, test } from '@rstest/core';
2
+ import { render, screen } from '@testing-library/vue';
3
+ import App from '../src/App.vue';
4
+
5
+ test('renders the main page', () => {
6
+ const testMessage = 'Rsbuild with Vue';
7
+ render(App);
8
+ expect(screen.getByText(testMessage)).toBeInTheDocument();
9
+ });
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "rsbuild-rstest-vue-ts",
3
+ "private": true,
4
+ "version": "1.0.0",
5
+ "scripts": {
6
+ "test": "rstest",
7
+ "test:watch": "rstest --watch"
8
+ },
9
+ "devDependencies": {
10
+ "@testing-library/dom": "^10.4.1",
11
+ "@testing-library/jest-dom": "^6.9.1",
12
+ "@testing-library/vue": "^8.1.0",
13
+ "@rstest/core": "^0.7.2",
14
+ "jsdom": "^27.3.0"
15
+ }
16
+ }
@@ -0,0 +1,15 @@
1
+ import { pluginVue } from '@rsbuild/plugin-vue';
2
+ import { defineConfig } from '@rstest/core';
3
+
4
+ // Docs: https://rstest.rs/config/
5
+ export default defineConfig({
6
+ plugins: [
7
+ pluginVue({
8
+ vueLoaderOptions: {
9
+ isServerBuild: false,
10
+ },
11
+ }),
12
+ ],
13
+ testEnvironment: 'jsdom',
14
+ setupFiles: ['./rstest.setup.ts'],
15
+ });
@@ -0,0 +1,4 @@
1
+ import { expect } from '@rstest/core';
2
+ import * as jestDomMatchers from '@testing-library/jest-dom/matchers';
3
+
4
+ expect.extend(jestDomMatchers);
@@ -0,0 +1,9 @@
1
+ import { expect, test } from '@rstest/core';
2
+ import { render, screen } from '@testing-library/vue';
3
+ import App from '../src/App.vue';
4
+
5
+ test('renders the main page', () => {
6
+ const testMessage = 'Rsbuild with Vue';
7
+ render(App);
8
+ expect(screen.getByText(testMessage)).toBeInTheDocument();
9
+ });
@@ -0,0 +1,7 @@
1
+ {
2
+ "extends": "../tsconfig.json",
3
+ "compilerOptions": {
4
+ "types": ["@testing-library/jest-dom"]
5
+ },
6
+ "include": ["./"]
7
+ }
@@ -12,7 +12,7 @@
12
12
  "solid-js": "^1.9.10"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.12",
15
+ "@rsbuild/core": "^1.6.14",
16
16
  "@rsbuild/plugin-babel": "^1.0.6",
17
17
  "@rsbuild/plugin-solid": "^1.0.6"
18
18
  }
@@ -12,7 +12,7 @@
12
12
  "solid-js": "^1.9.10"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.12",
15
+ "@rsbuild/core": "^1.6.14",
16
16
  "@rsbuild/plugin-babel": "^1.0.6",
17
17
  "@rsbuild/plugin-solid": "^1.0.6",
18
18
  "typescript": "^5.9.3"
@@ -9,10 +9,10 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "dependencies": {
12
- "svelte": "^5.45.5"
12
+ "svelte": "^5.46.0"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.12",
15
+ "@rsbuild/core": "^1.6.14",
16
16
  "@rsbuild/plugin-svelte": "^1.0.11"
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.45.5"
13
+ "svelte": "^5.46.0"
14
14
  },
15
15
  "devDependencies": {
16
- "@rsbuild/core": "^1.6.12",
16
+ "@rsbuild/core": "^1.6.14",
17
17
  "@rsbuild/plugin-svelte": "^1.0.11",
18
18
  "svelte-check": "^4.3.4",
19
19
  "typescript": "^5.9.3"
@@ -9,6 +9,6 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "devDependencies": {
12
- "@rsbuild/core": "^1.6.12"
12
+ "@rsbuild/core": "^1.6.14"
13
13
  }
14
14
  }
@@ -9,7 +9,7 @@
9
9
  "preview": "rsbuild preview"
10
10
  },
11
11
  "devDependencies": {
12
- "@rsbuild/core": "^1.6.12",
12
+ "@rsbuild/core": "^1.6.14",
13
13
  "typescript": "^5.9.3"
14
14
  }
15
15
  }
@@ -12,7 +12,7 @@
12
12
  "vue": "^2.7.16"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.12",
15
+ "@rsbuild/core": "^1.6.14",
16
16
  "@rsbuild/plugin-vue2": "^1.0.4"
17
17
  }
18
18
  }
@@ -12,7 +12,7 @@
12
12
  "vue": "^2.7.16"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.12",
15
+ "@rsbuild/core": "^1.6.14",
16
16
  "@rsbuild/plugin-vue2": "^1.0.4",
17
17
  "typescript": "^5.9.3"
18
18
  }
@@ -12,7 +12,7 @@
12
12
  "vue": "^3.5.25"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.12",
16
- "@rsbuild/plugin-vue": "^1.2.0"
15
+ "@rsbuild/core": "^1.6.14",
16
+ "@rsbuild/plugin-vue": "^1.2.1"
17
17
  }
18
18
  }
@@ -12,8 +12,8 @@
12
12
  "vue": "^3.5.25"
13
13
  },
14
14
  "devDependencies": {
15
- "@rsbuild/core": "^1.6.12",
16
- "@rsbuild/plugin-vue": "^1.2.0",
15
+ "@rsbuild/core": "^1.6.14",
16
+ "@rsbuild/plugin-vue": "^1.2.1",
17
17
  "typescript": "^5.9.3"
18
18
  }
19
19
  }