@@ -550,27 +550,20 @@ const importDefinitelyTypedTests = () => exec(process.execPath, ["scripts/import
550550task ( "importDefinitelyTypedTests" , series ( buildImportDefinitelyTypedTests , importDefinitelyTypedTests ) ) ;
551551task ( "importDefinitelyTypedTests" ) . description = "Runs the importDefinitelyTypedTests script to copy DT's tests to the TS-internal RWC tests" ;
552552
553- // TODO(jakebailey): There isn't a release build anymore; figure out what to do here.
554- // Probably just use tsc.js.
555-
556- const buildReleaseTsc = ( ) => buildProject ( "src/tsc/tsconfig.release.json" ) ;
557- const cleanReleaseTsc = ( ) => cleanProject ( "src/tsc/tsconfig.release.json" ) ;
558- cleanTasks . push ( cleanReleaseTsc ) ;
559-
560553const cleanBuilt = ( ) => del ( "built" ) ;
561554
562555const produceLKG = async ( ) => {
556+ // TODO(jakebailey): there are probably more files here that are needed.
563557 const expectedFiles = [
564- "built/local/tsc.release.js" ,
565- "built/local/typescriptServices.js" ,
566- "built/local/typescriptServices.d.ts" ,
558+ "built/local/tsc.js" ,
567559 "built/local/tsserver.js" ,
568560 "built/local/typescript.js" ,
569561 "built/local/typescript.d.ts" ,
570562 "built/local/tsserverlibrary.js" ,
571563 "built/local/tsserverlibrary.d.ts" ,
572564 "built/local/typingsInstaller.js" ,
573- "built/local/cancellationToken.js"
565+ "built/local/cancellationToken.js" ,
566+ "built/local/watchGuard.js" ,
574567 ] . concat ( libs . map ( lib => lib . target ) ) ;
575568 const missingFiles = expectedFiles
576569 . concat ( localizationTargets )
@@ -586,7 +579,8 @@ const produceLKG = async () => {
586579 }
587580} ;
588581
589- task ( "LKG" , series ( lkgPreBuild , parallel ( localize , buildTsc , buildServer , buildServices , buildLssl , buildOtherOutputs , buildReleaseTsc ) , produceLKG ) ) ;
582+ // TODO(jakebailey): dependencies on dts
583+ task ( "LKG" , series ( lkgPreBuild , parallel ( localize , buildTsc , buildServer , buildServices , buildLssl , buildOtherOutputs ) , produceLKG ) ) ;
590584task ( "LKG" ) . description = "Makes a new LKG out of the built js files" ;
591585task ( "LKG" ) . flags = {
592586 " --built" : "Compile using the built version of the compiler." ,
0 commit comments