@@ -550,27 +550,20 @@ const importDefinitelyTypedTests = () => exec(process.execPath, ["scripts/import
550
550
task ( "importDefinitelyTypedTests" , series ( buildImportDefinitelyTypedTests , importDefinitelyTypedTests ) ) ;
551
551
task ( "importDefinitelyTypedTests" ) . description = "Runs the importDefinitelyTypedTests script to copy DT's tests to the TS-internal RWC tests" ;
552
552
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
-
560
553
const cleanBuilt = ( ) => del ( "built" ) ;
561
554
562
555
const produceLKG = async ( ) => {
556
+ // TODO(jakebailey): there are probably more files here that are needed.
563
557
const expectedFiles = [
564
- "built/local/tsc.release.js" ,
565
- "built/local/typescriptServices.js" ,
566
- "built/local/typescriptServices.d.ts" ,
558
+ "built/local/tsc.js" ,
567
559
"built/local/tsserver.js" ,
568
560
"built/local/typescript.js" ,
569
561
"built/local/typescript.d.ts" ,
570
562
"built/local/tsserverlibrary.js" ,
571
563
"built/local/tsserverlibrary.d.ts" ,
572
564
"built/local/typingsInstaller.js" ,
573
- "built/local/cancellationToken.js"
565
+ "built/local/cancellationToken.js" ,
566
+ "built/local/watchGuard.js" ,
574
567
] . concat ( libs . map ( lib => lib . target ) ) ;
575
568
const missingFiles = expectedFiles
576
569
. concat ( localizationTargets )
@@ -586,7 +579,8 @@ const produceLKG = async () => {
586
579
}
587
580
} ;
588
581
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 ) ) ;
590
584
task ( "LKG" ) . description = "Makes a new LKG out of the built js files" ;
591
585
task ( "LKG" ) . flags = {
592
586
" --built" : "Compile using the built version of the compiler." ,
0 commit comments