diff --git a/e2e/cases/create-rsbuild/helper.ts b/e2e/cases/create-rsbuild/helper.ts index 6d11f27472..25001aca09 100644 --- a/e2e/cases/create-rsbuild/helper.ts +++ b/e2e/cases/create-rsbuild/helper.ts @@ -30,7 +30,7 @@ export const createAndValidate = async ( const dir = path.join(cwd, name); await fse.remove(dir); - let command = `node ${CREATE_RSBUILD_BIN_PATH} -d ${name} -t ${template}`; + let command = `node ${CREATE_RSBUILD_BIN_PATH} ${name} -t ${template}`; if (tools.length) { const toolsCmd = tools.map((tool) => `--tools ${tool}`).join(' '); command += ` ${toolsCmd}`; diff --git a/e2e/cases/create-rsbuild/tsTemplates.test.ts b/e2e/cases/create-rsbuild/tsTemplates.test.ts index c55b5fae8e..898c3b9594 100644 --- a/e2e/cases/create-rsbuild/tsTemplates.test.ts +++ b/e2e/cases/create-rsbuild/tsTemplates.test.ts @@ -7,6 +7,7 @@ rspackTest('should create react-ts project as expected', async () => { expect(pkgJson.dependencies['react-dom']).toBeTruthy(); expect(pkgJson.devDependencies['@rsbuild/plugin-react']).toBeTruthy(); }); + rspackTest('should create react18-ts project as expected', async () => { const { pkgJson } = await createAndValidate(__dirname, 'react18-ts'); expect(pkgJson.dependencies.react.startsWith('^18')).toBeTruthy(); diff --git a/packages/create-rsbuild/package.json b/packages/create-rsbuild/package.json index d41d73a2f0..dcdd2cf385 100644 --- a/packages/create-rsbuild/package.json +++ b/packages/create-rsbuild/package.json @@ -29,7 +29,7 @@ "bump": "pnpx bumpp --no-tag" }, "dependencies": { - "create-rstack": "1.7.1" + "create-rstack": "1.7.3" }, "devDependencies": { "@rsbuild/core": "workspace:*", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index e1ac8af035..6125e3c4a5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -761,8 +761,8 @@ importers: packages/create-rsbuild: dependencies: create-rstack: - specifier: 1.7.1 - version: 1.7.1 + specifier: 1.7.3 + version: 1.7.3 devDependencies: '@rsbuild/core': specifier: workspace:* @@ -3893,8 +3893,8 @@ packages: typescript: optional: true - create-rstack@1.7.1: - resolution: {integrity: sha512-QqWum6q0zDqDwAyqI16jPhyiA6ERN5REwv4KxXaD7WY/n6IRDHu1U+vHe80MML65WPmQ399XMHJPmAha+phKGw==} + create-rstack@1.7.3: + resolution: {integrity: sha512-6EtWXj/mJbJz/KfEK4Vxw3h+tRitu5WAHH+qPx+fv5VBElAjbgEUeAKVL0ydxxDIvUhiV7GlRVJcE4zDuG20fA==} cron-parser@4.9.0: resolution: {integrity: sha512-p0SaNjrHOnQeR8/VnfGbmg9te2kfyYSQ7Sc/j/6DtPL3JQvKxmjO9TSjNFpujqV3vEYYBvNNvXSxzyksBWAx1Q==} @@ -9743,7 +9743,7 @@ snapshots: optionalDependencies: typescript: 5.9.3 - create-rstack@1.7.1: {} + create-rstack@1.7.3: {} cron-parser@4.9.0: dependencies: diff --git a/website/docs/en/guide/start/quick-start.mdx b/website/docs/en/guide/start/quick-start.mdx index 9e9ee9809f..e6ccae84e6 100644 --- a/website/docs/en/guide/start/quick-start.mdx +++ b/website/docs/en/guide/start/quick-start.mdx @@ -100,33 +100,33 @@ To create an application in the current directory, set the target folder to `.`: ### Non-interactive mode -[create-rsbuild](https://npmjs.com/package/create-rsbuild) provides several CLI options. With these options, you can skip interactive prompts and create an app directly in non-interactive mode. +[create-rsbuild](https://npmjs.com/package/create-rsbuild) supports a non-interactive mode through command-line options. This mode lets you skip all prompts and create a project directly, which is useful for scripts, CI, and coding agents. For example, the following command creates a React app in the `my-app` directory: ```bash -npx -y create-rsbuild --dir my-app --template react +npx -y create-rsbuild@latest my-app --template react # Using abbreviations -npx -y create-rsbuild -d my-app -t react +npx -y create-rsbuild@latest my-app -t react # Specify multiple tools -npx -y create-rsbuild -d my-app -t react --tools eslint --tools prettier +npx -y create-rsbuild@latest my-app -t react --tools eslint --tools prettier ``` All CLI flags supported by `create-rsbuild`: ``` -Usage: create-rsbuild [options] +Usage: create-rsbuild [dir] [options] Options: - -h, --help display help for command - -d, --dir create project in specified directory - -t, --template specify the template to use - --tools select additional tools (biome, eslint, prettier) - --override override files in target directory - --package-name specify the package name + -h, --help display help for command + -d, --dir