create-rsbuild 0.7.7 → 0.7.8
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/dist/index.js +5 -4
- package/package.json +1 -1
- package/template-biome/package.json +1 -1
- package/template-eslint/common-js/package.json +2 -2
- package/template-eslint/common-ts/package.json +2 -2
- package/template-eslint/react-js/package.json +3 -3
- package/template-eslint/react-ts/package.json +3 -3
- package/template-eslint/svelte-js/package.json +2 -2
- package/template-eslint/svelte-ts/package.json +3 -3
- package/template-eslint/vue-js/package.json +2 -2
- package/template-eslint/vue-ts/package.json +2 -2
- package/template-prettier/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -38,12 +38,12 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
38
38
|
mod
|
|
39
39
|
));
|
|
40
40
|
|
|
41
|
-
// ../../node_modules/.pnpm/@modern-js+module-tools@2.52.0_eslint@9.
|
|
41
|
+
// ../../node_modules/.pnpm/@modern-js+module-tools@2.52.0_eslint@9.5.0_typescript@5.4.5/node_modules/@modern-js/module-tools/shims/esm.js
|
|
42
42
|
import { fileURLToPath } from "url";
|
|
43
43
|
import path from "path";
|
|
44
44
|
var getFilename, getDirname, __dirname;
|
|
45
45
|
var init_esm = __esm({
|
|
46
|
-
"../../node_modules/.pnpm/@modern-js+module-tools@2.52.0_eslint@9.
|
|
46
|
+
"../../node_modules/.pnpm/@modern-js+module-tools@2.52.0_eslint@9.5.0_typescript@5.4.5/node_modules/@modern-js/module-tools/shims/esm.js"() {
|
|
47
47
|
"use strict";
|
|
48
48
|
getFilename = () => fileURLToPath(import.meta.url);
|
|
49
49
|
getDirname = () => path.dirname(getFilename());
|
|
@@ -1270,12 +1270,13 @@ async function main() {
|
|
|
1270
1270
|
);
|
|
1271
1271
|
const tools = checkCancel(
|
|
1272
1272
|
await ae({
|
|
1273
|
-
message: "Select additional tools (
|
|
1273
|
+
message: "Select additional tools (press enter to continue)",
|
|
1274
1274
|
options: [
|
|
1275
1275
|
{ value: "biome", label: "Add Biome for code linting and formatting" },
|
|
1276
1276
|
{ value: "eslint", label: "Add ESLint for code linting" },
|
|
1277
1277
|
{ value: "prettier", label: "Add Prettier for code formatting" }
|
|
1278
|
-
]
|
|
1278
|
+
],
|
|
1279
|
+
required: false
|
|
1279
1280
|
})
|
|
1280
1281
|
);
|
|
1281
1282
|
const srcFolder = path2.join(packageRoot, `template-${framework}-${language}`);
|
package/package.json
CHANGED
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
"lint": "eslint ."
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@eslint/compat": "^1.0
|
|
10
|
-
"@eslint/js": "^9.
|
|
11
|
-
"eslint": "9.
|
|
9
|
+
"@eslint/compat": "^1.1.0",
|
|
10
|
+
"@eslint/js": "^9.5.0",
|
|
11
|
+
"eslint": "^9.5.0",
|
|
12
12
|
"eslint-plugin-react": "^7.34.2",
|
|
13
13
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
14
14
|
"globals": "^15.4.0"
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
"lint": "eslint ."
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@eslint/compat": "^1.0
|
|
10
|
-
"@eslint/js": "^9.
|
|
11
|
-
"eslint": "9.
|
|
9
|
+
"@eslint/compat": "^1.1.0",
|
|
10
|
+
"@eslint/js": "^9.5.0",
|
|
11
|
+
"eslint": "^9.5.0",
|
|
12
12
|
"eslint-plugin-react": "^7.34.2",
|
|
13
13
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
14
14
|
"globals": "^15.4.0",
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
"lint": "eslint ."
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
|
-
"@eslint/js": "^9.
|
|
10
|
-
"eslint": "9.
|
|
9
|
+
"@eslint/js": "^9.5.0",
|
|
10
|
+
"eslint": "^9.5.0",
|
|
11
11
|
"eslint-plugin-svelte": "^2.36.0",
|
|
12
12
|
"globals": "^15.4.0",
|
|
13
|
-
"typescript-eslint": "^8.0.0-alpha.
|
|
13
|
+
"typescript-eslint": "^8.0.0-alpha.30"
|
|
14
14
|
},
|
|
15
15
|
"type": "module"
|
|
16
16
|
}
|