File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -104,9 +104,7 @@ export default async function installPlaygroundDeps() {
104104 console . log ( `[Global Setup] Playground built successfully in ${ playgroundDir } .` ) ;
105105 resolve ( ) ;
106106 } else {
107- reject (
108- new Error ( `[Global Setup] npm run build failed in ${ playgroundDir } with code ${ buildCode } ` ) ,
109- ) ;
107+ reject ( new Error ( `[Global Setup] npm run build failed in ${ playgroundDir } with code ${ buildCode } ` ) ) ;
110108 }
111109 } ) ;
112110 buildProcess . on ( 'error' , ( err : Error ) => {
Original file line number Diff line number Diff line change @@ -83,9 +83,7 @@ export default async function installPlaygroundDeps() {
8383 console . log ( `[Global Setup] Playground built successfully in ${ playgroundDir } .` ) ;
8484 resolve ( ) ;
8585 } else {
86- reject (
87- new Error ( `[Global Setup] npm run build failed in ${ playgroundDir } with code ${ buildCode } ` ) ,
88- ) ;
86+ reject ( new Error ( `[Global Setup] npm run build failed in ${ playgroundDir } with code ${ buildCode } ` ) ) ;
8987 }
9088 } ) ;
9189 buildProcess . on ( 'error' , ( err : Error ) => {
You can’t perform that action at this time.
0 commit comments