File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 77
88( async  ( )  =>  { 
99
10+     // Parse ARGS 
11+     const  args  =  process . argv . slice ( 2 ) , 
12+           chromiumOnly  =  args . some ( arg  =>  / c h r o m / i. test ( arg ) ) , 
13+           ffOnly  =  args . some ( arg  =>  / f { 2 } / i. test ( arg ) ) , 
14+           noCommit  =  args . some ( arg  =>  [ '--no-commit' ,  '-nc' ] . includes ( arg ) ) , 
15+           noPush  =  args . some ( arg  =>  [ '--no-push' ,  '-np' ] . includes ( arg ) ) 
16+ 
1017    // Import LIBS 
1118    const  fs  =  require ( 'fs' ) , 
1219          path  =  require ( 'path' ) , 
2330    ) . replace ( / ^ \/ \* \* [ \s \S ] * ?\* \/ \s * / ,  '' ) )  // strip JSD header minification comment 
2431    const  bump  =  await  import ( `file://${ cachePaths . bumpUtils }  ` )  ;  fs . unlinkSync ( cachePaths . bumpUtils ) 
2532
26-     // Parse ARGS 
27-     const  args  =  process . argv . slice ( 2 ) , 
28-           chromiumOnly  =  args . some ( arg  =>  / c h r o m / i. test ( arg ) ) , 
29-           ffOnly  =  args . some ( arg  =>  / f { 2 } / i. test ( arg ) ) , 
30-           noCommit  =  args . some ( arg  =>  [ '--no-commit' ,  '-nc' ] . includes ( arg ) ) , 
31-           noPush  =  args . some ( arg  =>  [ '--no-push' ,  '-np' ] . includes ( arg ) ) 
32- 
3333    // Init manifest PATHS 
3434    const  manifestPaths  =  [ 'chromium/extension/manifest.json' ] 
3535
    
 
   
 
     
   
   
          
     
  
    
     
 
    
      
     
 
     
    You can’t perform that action at this time.
  
 
    
  
     
    
      
        
     
 
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments