File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 13
13
- run : npm run build
14
14
- run : npm run typecheck
15
15
- run : npm run lint
16
- - run : npm run format -- -- check
16
+ - run : npm run format: check
17
17
18
18
- name : package extension
19
19
run : |
Original file line number Diff line number Diff line change 367
367
"test" : " npm run compile && node ./node_modules/vscode/bin/test" ,
368
368
"typecheck" : " tsc --noEmit" ,
369
369
"format" : " prettier --write ." ,
370
+ "format:check" : " prettier --check ." ,
370
371
"lint" : " eslint ."
371
372
},
372
373
"devDependencies" : {
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ function zigRun() {
56
56
57
57
function escapePath ( rawPath : string ) : string {
58
58
if ( / [ ! " # $ & ' ( ) * , ; : < > ? \[ \\ \] ^ ` { | } ] / . test ( rawPath ) ) {
59
- return `"${ rawPath . replaceAll ( "\"" , "\"\\\"\"" ) } "` ;
59
+ return `"${ rawPath . replaceAll ( '"' , '"\\""' ) } "` ;
60
60
}
61
61
return rawPath ;
62
62
}
You can’t perform that action at this time.
0 commit comments