Skip to content

Commit 55b59e2

Browse files
committed
format
1 parent 5b04b25 commit 55b59e2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib_dev/process.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export function setupWithUrl(url) {
3232
* @param {string} [cwd]
3333
*/
3434
export function setup(cwd = process.cwd()) {
35+
3536
/**
3637
* @param {string} command
3738
* @param {string[]} [args]
@@ -44,8 +45,7 @@ export function setup(cwd = process.cwd()) {
4445

4546
const subprocess = child_process.spawn(command, args, {
4647
cwd,
47-
// Enable shell mode only in Windows for performance
48-
shell: process.platform === 'win32',
48+
shell: process.platform === "win32",
4949
stdio: ["ignore", "pipe", "pipe"],
5050
...options,
5151
});

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"test-ocaml": "node scripts/test.js -ounit",
5151
"check": "biome check --changed --no-errors-on-unmatched .",
5252
"check:all": "biome check .",
53+
"format": "biome check --changed --no-errors-on-unmatched . --fix",
5354
"coverage": "nyc --timeout=3000 --reporter=html mocha tests/tests/src/*_test.js && open ./coverage/index.html",
5455
"typecheck": "tsc"
5556
},

0 commit comments

Comments
 (0)