Skip to content

Commit 9b5395a

Browse files
style: fix biome formatting for multi-line arrays
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent fdda446 commit 9b5395a

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

fluidBuild.config.cjs

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,23 @@ module.exports = {
9292
// Generic build:test script should be replaced by :esm or :cjs specific versions.
9393
// "tsc" would be nice to eliminate from here, but plenty of packages still focus
9494
// on CommonJS.
95-
"build:test": ["typetests:gen", "tsc", "api-extractor:esnext", ...(skipCjsChecks ? [] : ["api-extractor:commonjs"])],
96-
"build:test:cjs": ["typetests:gen", "tsc", ...(skipCjsChecks ? [] : ["api-extractor:commonjs"])],
95+
"build:test": [
96+
"typetests:gen",
97+
"tsc",
98+
"api-extractor:esnext",
99+
...(skipCjsChecks ? [] : ["api-extractor:commonjs"]),
100+
],
101+
"build:test:cjs": [
102+
"typetests:gen",
103+
"tsc",
104+
...(skipCjsChecks ? [] : ["api-extractor:commonjs"]),
105+
],
97106
"build:test:esm": ["typetests:gen", "build:esnext", "api-extractor:esnext"],
98107
"api": {
99-
dependsOn: ["api-extractor:esnext", ...(skipCjsChecks ? [] : ["api-extractor:commonjs"])],
108+
dependsOn: [
109+
"api-extractor:esnext",
110+
...(skipCjsChecks ? [] : ["api-extractor:commonjs"]),
111+
],
100112
script: false,
101113
},
102114
"api-extractor:commonjs": ["tsc"],

0 commit comments

Comments
 (0)