create-rsbuild 1.0.1-rc.5 → 1.0.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 +5 -5
- 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 +2 -2
- package/template-react-ts/package.json +2 -2
- package/template-solid-js/package.json +3 -3
- package/template-solid-ts/package.json +3 -3
- package/template-svelte-js/package.json +2 -2
- package/template-svelte-ts/package.json +3 -3
- 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 +3 -3
- package/template-vue3-ts/package.json +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rsbuild",
|
|
3
|
-
"version": "1.0.1
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Create a new Rsbuild project",
|
|
5
5
|
"homepage": "https://rsbuild.dev",
|
|
6
6
|
"repository": {
|
|
@@ -22,14 +22,14 @@
|
|
|
22
22
|
"dist",
|
|
23
23
|
"bin.js"
|
|
24
24
|
],
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"create-rstack": "1.0.1"
|
|
27
|
+
},
|
|
25
28
|
"devDependencies": {
|
|
26
|
-
"@rslib/core": "0.0.
|
|
29
|
+
"@rslib/core": "0.0.5",
|
|
27
30
|
"@types/node": "18.x",
|
|
28
31
|
"typescript": "^5.5.2"
|
|
29
32
|
},
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"create-rstack": "1.0.1"
|
|
32
|
-
},
|
|
33
33
|
"engines": {
|
|
34
34
|
"node": ">=16.7.0"
|
|
35
35
|
},
|
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
"react-dom": "^18.3.1"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@rsbuild/core": "
|
|
16
|
-
"@rsbuild/plugin-react": "
|
|
15
|
+
"@rsbuild/core": "^1.0.1",
|
|
16
|
+
"@rsbuild/plugin-react": "^1.0.1",
|
|
17
17
|
"@types/react": "^18.3.5",
|
|
18
18
|
"@types/react-dom": "^18.3.0",
|
|
19
19
|
"typescript": "^5.5.2"
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"solid-js": "^1.8.22"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@rsbuild/core": "
|
|
15
|
-
"@rsbuild/plugin-babel": "
|
|
16
|
-
"@rsbuild/plugin-solid": "
|
|
14
|
+
"@rsbuild/core": "^1.0.1",
|
|
15
|
+
"@rsbuild/plugin-babel": "^1.0.1",
|
|
16
|
+
"@rsbuild/plugin-solid": "^1.0.1"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
"solid-js": "^1.8.22"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@rsbuild/core": "
|
|
15
|
-
"@rsbuild/plugin-babel": "
|
|
16
|
-
"@rsbuild/plugin-solid": "
|
|
14
|
+
"@rsbuild/core": "^1.0.1",
|
|
15
|
+
"@rsbuild/plugin-babel": "^1.0.1",
|
|
16
|
+
"@rsbuild/plugin-solid": "^1.0.1",
|
|
17
17
|
"typescript": "^5.5.2"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -12,9 +12,9 @@
|
|
|
12
12
|
"svelte": "^4.2.19"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@rsbuild/core": "
|
|
16
|
-
"@rsbuild/plugin-svelte": "
|
|
17
|
-
"svelte-check": "^4.0.
|
|
15
|
+
"@rsbuild/core": "^1.0.1",
|
|
16
|
+
"@rsbuild/plugin-svelte": "^1.0.1",
|
|
17
|
+
"svelte-check": "^4.0.1",
|
|
18
18
|
"typescript": "^5.5.2"
|
|
19
19
|
}
|
|
20
20
|
}
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"preview": "rsbuild preview"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"vue": "^3.5.
|
|
11
|
+
"vue": "^3.5.3"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@rsbuild/core": "
|
|
15
|
-
"@rsbuild/plugin-vue": "
|
|
14
|
+
"@rsbuild/core": "^1.0.1",
|
|
15
|
+
"@rsbuild/plugin-vue": "^1.0.1"
|
|
16
16
|
}
|
|
17
17
|
}
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
"preview": "rsbuild preview"
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"vue": "^3.5.
|
|
11
|
+
"vue": "^3.5.3"
|
|
12
12
|
},
|
|
13
13
|
"devDependencies": {
|
|
14
|
-
"@rsbuild/core": "
|
|
15
|
-
"@rsbuild/plugin-vue": "
|
|
14
|
+
"@rsbuild/core": "^1.0.1",
|
|
15
|
+
"@rsbuild/plugin-vue": "^1.0.1",
|
|
16
16
|
"typescript": "^5.5.2"
|
|
17
17
|
}
|
|
18
18
|
}
|