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) {
3232 * @param  {string } [cwd] 
3333 */ 
3434export  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    } ) ; 
Original file line number Diff line number Diff line change 4949    "test-ocaml" : " node scripts/test.js -ounit" 
5050    "check" : " biome check --changed --no-errors-on-unmatched ." 
5151    "check:all" : " biome check ." 
52+     "format" : " biome check --changed --no-errors-on-unmatched . --fix" 
5253    "coverage" : " nyc --timeout=3000 --reporter=html mocha tests/tests/src/*_test.js && open ./coverage/index.html" 
5354    "typecheck" : " tsc" 
5455  },
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments