@@ -26,7 +26,7 @@ class Builder {
2626 this . ensureArgument ( "rootPath" , this . rootPath )
2727 this . codeServerVersion = this . ensureArgument (
2828 "codeServerVersion" ,
29- process . env . VERSION || require ( path . join ( this . rootPath , "package.json" ) ) . version
29+ process . env . VERSION || require ( path . join ( this . rootPath , "package.json" ) ) . version ,
3030 )
3131 }
3232
@@ -208,7 +208,7 @@ class Builder {
208208 await Promise . all ( [
209209 fs . move (
210210 path . join ( this . vscodeSourcePath , `out-vscode${ process . env . MINIFY ? "-min" : "" } ` ) ,
211- path . join ( vscodeBuildPath , "out" )
211+ path . join ( vscodeBuildPath , "out" ) ,
212212 ) ,
213213 fs . copy ( path . join ( this . vscodeSourcePath , ".build/extensions" ) , path . join ( vscodeBuildPath , "extensions" ) ) ,
214214 ] )
@@ -225,7 +225,7 @@ class Builder {
225225 return Promise . all (
226226 [ "node_modules" , "package.json" , "yarn.lock" ] . map ( ( fileName ) => {
227227 return fs . copy ( path . join ( sourcePath , fileName ) , path . join ( buildPath , fileName ) )
228- } )
228+ } ) ,
229229 )
230230 } )
231231
@@ -240,8 +240,8 @@ class Builder {
240240 ...merge ,
241241 } ,
242242 null ,
243- 2
244- )
243+ 2 ,
244+ ) ,
245245 )
246246 } )
247247
@@ -290,7 +290,7 @@ class Builder {
290290 await fs . copyFile ( path . join ( this . vscodeSourcePath , "LICENSE.txt" ) , path . join ( archivePath , "LICENSE.txt" ) )
291291 await fs . copyFile (
292292 path . join ( this . vscodeSourcePath , "ThirdPartyNotices.txt" ) ,
293- path . join ( archivePath , "ThirdPartyNotices.txt" )
293+ path . join ( archivePath , "ThirdPartyNotices.txt" ) ,
294294 )
295295
296296 if ( ( await this . target ( ) ) === "darwin" ) {
0 commit comments