Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/create-rsbuild/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"start": "node ./dist/index.js"
},
"dependencies": {
"create-rstack": "1.9.1"
"create-rstack": "1.9.2"
},
"devDependencies": {
"@rsbuild/core": "workspace:*",
Expand Down
7 changes: 6 additions & 1 deletion packages/create-rsbuild/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ async function getTemplateName({ template }: Argv) {
message: 'Select framework',
options: [
{ value: 'vanilla', label: 'Vanilla' },
{ value: 'react', label: 'React 19' },
{ value: 'react', label: 'React' },
{ value: 'vue3', label: 'Vue 3' },
{ value: 'vue2', label: 'Vue 2' },
Comment thread
chenjiahan marked this conversation as resolved.
{ value: 'lit', label: 'Lit' },
Expand Down Expand Up @@ -176,5 +176,10 @@ create({
label: 'Rsbuild - best practices',
source: 'rstackjs/agent-skills',
},
{
value: 'rstest-best-practices',
label: 'Rstest - best practices',
source: 'rstackjs/agent-skills',
},
],
});
10 changes: 5 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion website/docs/en/guide/start/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ When creating an application, you can choose from the following templates provid
| Template | Official docs | Rsbuild integration guide |
| -------- | ------------------------------- | --------------------------------------- |
| vanilla | Native JavaScript | - |
| react | [React 19](https://react.dev/) | [Using React](/guide/framework/react) |
| react | [React](https://react.dev/) | [Using React](/guide/framework/react) |
| vue | [Vue 3](https://vuejs.org/) | [Using Vue](/guide/framework/vue) |
| vue2 | [Vue 2](https://v2.vuejs.org/) | [Using Vue](/guide/framework/vue) |
| lit | [Lit](https://lit.dev/) | - |
Expand Down
2 changes: 1 addition & 1 deletion website/docs/zh/guide/start/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ import { PackageManagerTabs } from '@theme';
| 模板 | 官方文档 | Rsbuild 集成指南 |
| ------- | ------------------------------- | -------------------------------------- |
| vanilla | 原生 JavaScript | - |
| react | [React 19](https://react.dev/) | [使用 React](/guide/framework/react) |
| react | [React](https://react.dev/) | [使用 React](/guide/framework/react) |
| vue | [Vue 3](https://vuejs.org/) | [使用 Vue](/guide/framework/vue) |
| vue2 | [Vue 2](https://v2.vuejs.org/) | [使用 Vue](/guide/framework/vue) |
| lit | [Lit](https://lit.dev/) | - |
Expand Down
Loading