File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -21,9 +21,9 @@ function createSwcClientStream() {
21
21
}
22
22
exec ( ) {
23
23
try {
24
- const out1 = ( 0 , child_process_1 . execSync ) ( `npx swc --config-file ${ pathConfigAmd } ${ srcDir } / --copy-files -- out-dir ${ outDir } ` , { encoding : 'utf-8' } ) ;
24
+ const out1 = ( 0 , child_process_1 . execSync ) ( `npx swc --config-file ${ pathConfigAmd } ${ srcDir } / --out-dir ${ outDir } ` , { encoding : 'utf-8' } ) ;
25
25
console . log ( out1 ) ;
26
- const out2 = ( 0 , child_process_1 . execSync ) ( `npx swc --config-file ${ pathConfigNoModule } ${ srcDir } /vs/base/worker/workerMain.ts --copy-files -- out-dir ${ outDir } ` , { encoding : 'utf-8' } ) ;
26
+ const out2 = ( 0 , child_process_1 . execSync ) ( `npx swc --config-file ${ pathConfigNoModule } ${ srcDir } /vs/base/worker/workerMain.ts --out-dir ${ outDir } ` , { encoding : 'utf-8' } ) ;
27
27
console . log ( out2 ) ;
28
28
return true ;
29
29
}
Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ export function createSwcClientStream() {
26
26
27
27
exec ( ) {
28
28
try {
29
- const out1 = execSync ( `npx swc --config-file ${ pathConfigAmd } ${ srcDir } / --copy-files -- out-dir ${ outDir } ` , { encoding : 'utf-8' } ) ;
29
+ const out1 = execSync ( `npx swc --config-file ${ pathConfigAmd } ${ srcDir } / --out-dir ${ outDir } ` , { encoding : 'utf-8' } ) ;
30
30
console . log ( out1 ) ;
31
31
32
- const out2 = execSync ( `npx swc --config-file ${ pathConfigNoModule } ${ srcDir } /vs/base/worker/workerMain.ts --copy-files -- out-dir ${ outDir } ` , { encoding : 'utf-8' } ) ;
32
+ const out2 = execSync ( `npx swc --config-file ${ pathConfigNoModule } ${ srcDir } /vs/base/worker/workerMain.ts --out-dir ${ outDir } ` , { encoding : 'utf-8' } ) ;
33
33
console . log ( out2 ) ;
34
34
return true ;
35
35
} catch ( error ) {
You can’t perform that action at this time.
0 commit comments