create-rsbuild 1.0.1-rc.0 → 1.0.1-rc.2
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/README.md +17 -2
- package/bin.js +2 -0
- package/dist/index.js +100 -1648
- package/package.json +11 -15
- 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-biome/biome.json +0 -25
- package/template-biome/package.json +0 -12
- package/template-eslint/common-js/eslint.config.mjs +0 -8
- package/template-eslint/common-js/package.json +0 -13
- package/template-eslint/common-ts/eslint.config.mjs +0 -10
- package/template-eslint/common-ts/package.json +0 -14
- package/template-eslint/react-js/eslint.config.mjs +0 -29
- package/template-eslint/react-js/package.json +0 -16
- package/template-eslint/react-ts/eslint.config.mjs +0 -31
- package/template-eslint/react-ts/package.json +0 -17
- package/template-eslint/svelte-js/eslint.config.mjs +0 -20
- package/template-eslint/svelte-js/package.json +0 -14
- package/template-eslint/svelte-ts/eslint.config.mjs +0 -28
- package/template-eslint/svelte-ts/package.json +0 -16
- package/template-eslint/vue-js/eslint.config.mjs +0 -10
- package/template-eslint/vue-js/package.json +0 -14
- package/template-eslint/vue-ts/eslint.config.mjs +0 -12
- package/template-eslint/vue-ts/package.json +0 -15
- package/template-prettier/.prettierignore +0 -4
- package/template-prettier/.prettierrc +0 -3
- package/template-prettier/package.json +0 -11
package/README.md
CHANGED
|
@@ -2,9 +2,24 @@
|
|
|
2
2
|
<a href="https://rsbuild.dev" target="blank"><img src="https://github.com/web-infra-dev/rsbuild/assets/7237365/84abc13e-b620-468f-a90b-dbf28e7e9427" alt="Rsbuild Logo" /></a>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
|
-
#
|
|
5
|
+
# create-rsbuild
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
Create a new Rsbuild project.
|
|
8
|
+
|
|
9
|
+
Using `npm create`:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npm create rsbuild@latest
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Using CLI flags:
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npx create-rsbuild --dir my-project --template react
|
|
19
|
+
|
|
20
|
+
# Using abbreviations
|
|
21
|
+
npx create-rsbuild -d my-project -t react
|
|
22
|
+
```
|
|
8
23
|
|
|
9
24
|
## Documentation
|
|
10
25
|
|
package/bin.js
ADDED