create-rsbuild 1.3.4 → 1.4.1
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/package.json +7 -7
- package/template-common/README.md +8 -1
- package/template-lit-js/package.json +1 -1
- package/template-lit-ts/package.json +1 -1
- package/template-preact-js/package.json +2 -2
- package/template-preact-ts/package.json +2 -2
- package/template-react-js/package.json +1 -1
- package/template-react-ts/package.json +1 -1
- package/template-react18-js/package.json +1 -1
- package/template-react18-ts/package.json +1 -1
- package/template-solid-js/package.json +1 -1
- package/template-solid-ts/package.json +1 -1
- package/template-svelte-js/package.json +2 -2
- package/template-svelte-ts/package.json +2 -2
- package/template-vanilla-js/package.json +1 -1
- package/template-vanilla-ts/package.json +1 -1
- package/template-vue2-js/package.json +1 -1
- package/template-vue2-ts/package.json +1 -1
- package/template-vue3-js/package.json +1 -1
- package/template-vue3-ts/package.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rsbuild",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "Create a new Rsbuild project",
|
|
5
5
|
"homepage": "https://rsbuild.rs",
|
|
6
6
|
"repository": {
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"bin.js"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"create-rstack": "1.5.
|
|
26
|
+
"create-rstack": "1.5.2"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@rsbuild/plugin-react": "^1.1.0",
|
|
30
|
-
"@rslib/core": "0.10.
|
|
31
|
-
"@types/node": "^22.15.
|
|
30
|
+
"@rslib/core": "0.10.3",
|
|
31
|
+
"@types/node": "^22.15.33",
|
|
32
32
|
"typescript": "^5.8.3",
|
|
33
|
-
"@rsbuild/core": "1.4.
|
|
34
|
-
"@rsbuild/plugin-solid": "1.0.5",
|
|
33
|
+
"@rsbuild/core": "1.4.1",
|
|
35
34
|
"@rsbuild/plugin-babel": "1.0.5",
|
|
35
|
+
"@rsbuild/plugin-preact": "1.5.0",
|
|
36
|
+
"@rsbuild/plugin-solid": "1.0.5",
|
|
36
37
|
"@rsbuild/plugin-svelte": "1.0.10",
|
|
37
|
-
"@rsbuild/plugin-preact": "1.5.0-beta.0",
|
|
38
38
|
"@rsbuild/plugin-vue": "1.0.7"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
@@ -10,7 +10,7 @@ pnpm install
|
|
|
10
10
|
|
|
11
11
|
## Get started
|
|
12
12
|
|
|
13
|
-
Start the dev server:
|
|
13
|
+
Start the dev server, and the app will be available at [http://localhost:3000](http://localhost:3000).
|
|
14
14
|
|
|
15
15
|
```bash
|
|
16
16
|
pnpm dev
|
|
@@ -27,3 +27,10 @@ Preview the production build locally:
|
|
|
27
27
|
```bash
|
|
28
28
|
pnpm preview
|
|
29
29
|
```
|
|
30
|
+
|
|
31
|
+
## Learn more
|
|
32
|
+
|
|
33
|
+
To learn more about Rsbuild, check out the following resources:
|
|
34
|
+
|
|
35
|
+
- [Rsbuild documentation](https://rsbuild.rs) - explore Rsbuild features and APIs.
|
|
36
|
+
- [Rsbuild GitHub repository](https://github.com/web-infra-dev/rsbuild) - your feedback and contributions are welcome!
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
"svelte-check": "svelte-check --tsconfig ./tsconfig.json"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"svelte": "^5.34.
|
|
13
|
+
"svelte": "^5.34.8"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@rsbuild/core": "^1.
|
|
16
|
+
"@rsbuild/core": "^1.4.0",
|
|
17
17
|
"@rsbuild/plugin-svelte": "^1.0.10",
|
|
18
18
|
"svelte-check": "^4.2.2",
|
|
19
19
|
"typescript": "^5.8.3"
|