create-rsbuild 1.4.4 → 1.4.5
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 +9 -9
- package/template-lit-js/package.json +2 -2
- package/template-lit-ts/package.json +3 -3
- package/template-lit-ts/tsconfig.json +3 -1
- package/template-preact-js/package.json +3 -3
- package/template-preact-ts/package.json +4 -4
- package/template-preact-ts/tsconfig.json +3 -1
- package/template-react-js/package.json +2 -2
- package/template-react-ts/package.json +3 -3
- package/template-react-ts/tsconfig.json +3 -1
- package/template-react18-js/package.json +2 -2
- package/template-react18-ts/package.json +3 -3
- package/template-react18-ts/tsconfig.json +3 -1
- package/template-solid-js/package.json +1 -1
- package/template-solid-ts/package.json +2 -2
- package/template-solid-ts/tsconfig.json +3 -1
- package/template-svelte-js/package.json +2 -2
- package/template-svelte-ts/package.json +4 -4
- package/template-svelte-ts/tsconfig.json +3 -1
- package/template-vanilla-js/package.json +1 -1
- package/template-vanilla-ts/package.json +2 -2
- package/template-vanilla-ts/tsconfig.json +2 -0
- package/template-vue2-js/package.json +1 -1
- package/template-vue2-ts/package.json +2 -2
- package/template-vue2-ts/tsconfig.json +3 -1
- package/template-vue3-js/package.json +2 -2
- package/template-vue3-ts/package.json +3 -3
- package/template-vue3-ts/tsconfig.json +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rsbuild",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.5",
|
|
4
4
|
"description": "Create a new Rsbuild project",
|
|
5
5
|
"homepage": "https://rsbuild.rs",
|
|
6
6
|
"repository": {
|
|
@@ -23,19 +23,19 @@
|
|
|
23
23
|
"bin.js"
|
|
24
24
|
],
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"create-rstack": "1.5.
|
|
26
|
+
"create-rstack": "1.5.5"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@rsbuild/plugin-react": "^1.1.0",
|
|
30
|
-
"@rslib/core": "0.
|
|
31
|
-
"@types/node": "^22.
|
|
32
|
-
"typescript": "^5.
|
|
33
|
-
"@rsbuild/core": "1.4.
|
|
34
|
-
"@rsbuild/plugin-
|
|
35
|
-
"@rsbuild/plugin-
|
|
30
|
+
"@rslib/core": "0.11.0",
|
|
31
|
+
"@types/node": "^22.17.0",
|
|
32
|
+
"typescript": "^5.9.2",
|
|
33
|
+
"@rsbuild/core": "1.4.13",
|
|
34
|
+
"@rsbuild/plugin-babel": "1.0.5",
|
|
35
|
+
"@rsbuild/plugin-preact": "1.5.1",
|
|
36
36
|
"@rsbuild/plugin-solid": "1.0.5",
|
|
37
37
|
"@rsbuild/plugin-vue": "1.1.0",
|
|
38
|
-
"@rsbuild/plugin-
|
|
38
|
+
"@rsbuild/plugin-svelte": "1.0.10"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">=16.10.0"
|
|
@@ -9,10 +9,12 @@
|
|
|
9
9
|
|
|
10
10
|
/* modules */
|
|
11
11
|
"module": "ESNext",
|
|
12
|
+
"moduleDetection": "force",
|
|
13
|
+
"moduleResolution": "bundler",
|
|
12
14
|
"verbatimModuleSyntax": true,
|
|
13
15
|
"resolveJsonModule": true,
|
|
14
|
-
"moduleResolution": "bundler",
|
|
15
16
|
"allowImportingTsExtensions": true,
|
|
17
|
+
"noUncheckedSideEffectImports": true,
|
|
16
18
|
|
|
17
19
|
/* type checking */
|
|
18
20
|
"strict": true,
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"preview": "rsbuild preview"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"preact": "^10.
|
|
12
|
+
"preact": "^10.27.0"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@rsbuild/core": "^1.4.
|
|
16
|
-
"@rsbuild/plugin-preact": "^1.5.
|
|
15
|
+
"@rsbuild/core": "^1.4.11",
|
|
16
|
+
"@rsbuild/plugin-preact": "^1.5.1"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
"preview": "rsbuild preview"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"preact": "^10.
|
|
12
|
+
"preact": "^10.27.0"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@rsbuild/core": "^1.4.
|
|
16
|
-
"@rsbuild/plugin-preact": "^1.5.
|
|
17
|
-
"typescript": "^5.
|
|
15
|
+
"@rsbuild/core": "^1.4.11",
|
|
16
|
+
"@rsbuild/plugin-preact": "^1.5.1",
|
|
17
|
+
"typescript": "^5.9.2"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -10,10 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
/* modules */
|
|
12
12
|
"module": "ESNext",
|
|
13
|
+
"moduleDetection": "force",
|
|
14
|
+
"moduleResolution": "bundler",
|
|
13
15
|
"verbatimModuleSyntax": true,
|
|
14
16
|
"resolveJsonModule": true,
|
|
15
|
-
"moduleResolution": "bundler",
|
|
16
17
|
"allowImportingTsExtensions": true,
|
|
18
|
+
"noUncheckedSideEffectImports": true,
|
|
17
19
|
"paths": {
|
|
18
20
|
"react": ["./node_modules/preact/compat/"],
|
|
19
21
|
"react-dom": ["./node_modules/preact/compat/"]
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"react-dom": "^19.1.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@rsbuild/core": "^1.4.
|
|
17
|
-
"@rsbuild/plugin-react": "^1.3.
|
|
16
|
+
"@rsbuild/core": "^1.4.11",
|
|
17
|
+
"@rsbuild/plugin-react": "^1.3.4",
|
|
18
18
|
"@types/react": "^19.1.8",
|
|
19
19
|
"@types/react-dom": "^19.1.6",
|
|
20
|
-
"typescript": "^5.
|
|
20
|
+
"typescript": "^5.9.2"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -9,10 +9,12 @@
|
|
|
9
9
|
|
|
10
10
|
/* modules */
|
|
11
11
|
"module": "ESNext",
|
|
12
|
+
"moduleDetection": "force",
|
|
13
|
+
"moduleResolution": "bundler",
|
|
12
14
|
"verbatimModuleSyntax": true,
|
|
13
15
|
"resolveJsonModule": true,
|
|
14
|
-
"moduleResolution": "bundler",
|
|
15
16
|
"allowImportingTsExtensions": true,
|
|
17
|
+
"noUncheckedSideEffectImports": true,
|
|
16
18
|
|
|
17
19
|
/* type checking */
|
|
18
20
|
"strict": true,
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"react-dom": "^18.3.1"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@rsbuild/core": "^1.4.
|
|
17
|
-
"@rsbuild/plugin-react": "^1.3.
|
|
16
|
+
"@rsbuild/core": "^1.4.11",
|
|
17
|
+
"@rsbuild/plugin-react": "^1.3.4",
|
|
18
18
|
"@types/react": "^18.3.18",
|
|
19
19
|
"@types/react-dom": "^18.3.5",
|
|
20
|
-
"typescript": "^5.
|
|
20
|
+
"typescript": "^5.9.2"
|
|
21
21
|
}
|
|
22
22
|
}
|
|
@@ -9,10 +9,12 @@
|
|
|
9
9
|
|
|
10
10
|
/* modules */
|
|
11
11
|
"module": "ESNext",
|
|
12
|
+
"moduleDetection": "force",
|
|
13
|
+
"moduleResolution": "bundler",
|
|
12
14
|
"verbatimModuleSyntax": true,
|
|
13
15
|
"resolveJsonModule": true,
|
|
14
|
-
"moduleResolution": "bundler",
|
|
15
16
|
"allowImportingTsExtensions": true,
|
|
17
|
+
"noUncheckedSideEffectImports": true,
|
|
16
18
|
|
|
17
19
|
/* type checking */
|
|
18
20
|
"strict": true,
|
|
@@ -10,10 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
/* modules */
|
|
12
12
|
"module": "ESNext",
|
|
13
|
+
"moduleDetection": "force",
|
|
14
|
+
"moduleResolution": "bundler",
|
|
13
15
|
"verbatimModuleSyntax": true,
|
|
14
16
|
"resolveJsonModule": true,
|
|
15
|
-
"moduleResolution": "bundler",
|
|
16
17
|
"allowImportingTsExtensions": true,
|
|
18
|
+
"noUncheckedSideEffectImports": true,
|
|
17
19
|
|
|
18
20
|
/* type checking */
|
|
19
21
|
"strict": true,
|
|
@@ -10,12 +10,12 @@
|
|
|
10
10
|
"svelte-check": "svelte-check --tsconfig ./tsconfig.json"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"svelte": "^5.
|
|
13
|
+
"svelte": "^5.37.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@rsbuild/core": "^1.4.
|
|
16
|
+
"@rsbuild/core": "^1.4.11",
|
|
17
17
|
"@rsbuild/plugin-svelte": "^1.0.10",
|
|
18
|
-
"svelte-check": "^4.
|
|
19
|
-
"typescript": "^5.
|
|
18
|
+
"svelte-check": "^4.3.0",
|
|
19
|
+
"typescript": "^5.9.2"
|
|
20
20
|
}
|
|
21
21
|
}
|
|
@@ -8,10 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
/* modules */
|
|
10
10
|
"module": "ESNext",
|
|
11
|
+
"moduleDetection": "force",
|
|
12
|
+
"moduleResolution": "bundler",
|
|
11
13
|
"verbatimModuleSyntax": true,
|
|
12
14
|
"resolveJsonModule": true,
|
|
13
|
-
"moduleResolution": "bundler",
|
|
14
15
|
"allowImportingTsExtensions": true,
|
|
16
|
+
"noUncheckedSideEffectImports": true,
|
|
15
17
|
|
|
16
18
|
/* type checking */
|
|
17
19
|
"strict": true,
|
|
@@ -8,10 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
/* modules */
|
|
10
10
|
"module": "ESNext",
|
|
11
|
+
"moduleDetection": "force",
|
|
11
12
|
"moduleResolution": "bundler",
|
|
12
13
|
"verbatimModuleSyntax": true,
|
|
13
14
|
"resolveJsonModule": true,
|
|
14
15
|
"allowImportingTsExtensions": true,
|
|
16
|
+
"noUncheckedSideEffectImports": true,
|
|
15
17
|
|
|
16
18
|
/* type checking */
|
|
17
19
|
"strict": true,
|
|
@@ -9,10 +9,12 @@
|
|
|
9
9
|
|
|
10
10
|
/* modules */
|
|
11
11
|
"module": "ESNext",
|
|
12
|
+
"moduleDetection": "force",
|
|
13
|
+
"moduleResolution": "bundler",
|
|
12
14
|
"verbatimModuleSyntax": true,
|
|
13
15
|
"resolveJsonModule": true,
|
|
14
|
-
"moduleResolution": "bundler",
|
|
15
16
|
"allowImportingTsExtensions": true,
|
|
17
|
+
"noUncheckedSideEffectImports": true,
|
|
16
18
|
|
|
17
19
|
/* type checking */
|
|
18
20
|
"strict": true,
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
"preview": "rsbuild preview"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"vue": "^3.5.
|
|
12
|
+
"vue": "^3.5.18"
|
|
13
13
|
},
|
|
14
14
|
"devDependencies": {
|
|
15
|
-
"@rsbuild/core": "^1.4.
|
|
15
|
+
"@rsbuild/core": "^1.4.11",
|
|
16
16
|
"@rsbuild/plugin-vue": "^1.1.0",
|
|
17
|
-
"typescript": "^5.
|
|
17
|
+
"typescript": "^5.9.2"
|
|
18
18
|
}
|
|
19
19
|
}
|
|
@@ -10,10 +10,12 @@
|
|
|
10
10
|
|
|
11
11
|
/* modules */
|
|
12
12
|
"module": "ESNext",
|
|
13
|
+
"moduleDetection": "force",
|
|
14
|
+
"moduleResolution": "bundler",
|
|
13
15
|
"verbatimModuleSyntax": true,
|
|
14
16
|
"resolveJsonModule": true,
|
|
15
|
-
"moduleResolution": "bundler",
|
|
16
17
|
"allowImportingTsExtensions": true,
|
|
18
|
+
"noUncheckedSideEffectImports": true,
|
|
17
19
|
|
|
18
20
|
/* type checking */
|
|
19
21
|
"strict": true,
|