File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export function setupWithUrl(url) {
32
32
* @param {string } [cwd]
33
33
*/
34
34
export function setup ( cwd = process . cwd ( ) ) {
35
+
35
36
/**
36
37
* @param {string } command
37
38
* @param {string[] } [args]
@@ -44,8 +45,7 @@ export function setup(cwd = process.cwd()) {
44
45
45
46
const subprocess = child_process . spawn ( command , args , {
46
47
cwd,
47
- // Enable shell mode only in Windows for performance
48
- shell : process . platform === 'win32' ,
48
+ shell : process . platform === "win32" ,
49
49
stdio : [ "ignore" , "pipe" , "pipe" ] ,
50
50
...options ,
51
51
} ) ;
Original file line number Diff line number Diff line change 50
50
"test-ocaml" : " node scripts/test.js -ounit" ,
51
51
"check" : " biome check --changed --no-errors-on-unmatched ." ,
52
52
"check:all" : " biome check ." ,
53
+ "format" : " biome check --changed --no-errors-on-unmatched . --fix" ,
53
54
"coverage" : " nyc --timeout=3000 --reporter=html mocha tests/tests/src/*_test.js && open ./coverage/index.html" ,
54
55
"typecheck" : " tsc"
55
56
},
You can’t perform that action at this time.
0 commit comments