@@ -486,21 +486,6 @@ task("baseline-accept").description = "Makes the most recent test results the ne
486
486
task ( "baseline-accept-rwc" , ( ) => baselineAccept ( localRwcBaseline , refRwcBaseline ) ) ;
487
487
task ( "baseline-accept-rwc" ) . description = "Makes the most recent rwc test results the new baseline, overwriting the old baseline" ;
488
488
489
- const buildLoggedIO = ( ) => buildProject ( "src/loggedIO/tsconfig-tsc-instrumented.json" ) ;
490
- const cleanLoggedIO = ( ) => del ( "built/local/loggedIO.js" ) ;
491
- cleanTasks . push ( cleanLoggedIO ) ;
492
-
493
- const buildInstrumenter = ( ) => buildProject ( "src/instrumenter" ) ;
494
- const cleanInstrumenter = ( ) => cleanProject ( "src/instrumenter" ) ;
495
- cleanTasks . push ( cleanInstrumenter ) ;
496
-
497
- const tscInstrumented = ( ) => exec ( process . execPath , [ "built/local/instrumenter.js" , "record" , cmdLineOptions . tests || "iocapture" , "built/local/tsc.js" ] ) ;
498
- task ( "tsc-instrumented" , series ( lkgPreBuild , parallel ( localize , buildTsc , buildServer , buildServices , buildLssl , buildLoggedIO , buildInstrumenter ) , tscInstrumented ) ) ;
499
- task ( "tsc-instrumented" ) . description = "Builds an instrumented tsc.js" ;
500
- task ( "tsc-instrumented" ) . flags = {
501
- "-t --tests=<testname>" : "The test to run."
502
- } ;
503
-
504
489
// TODO(rbuckton): Determine if we still need this task. Depending on a relative
505
490
// path here seems like a bad idea.
506
491
const updateSublime = ( ) => src ( [ "built/local/tsserver.js" , "built/local/tsserver.js.map" ] )
@@ -577,10 +562,6 @@ const configureExperimental = () => exec(process.execPath, ["scripts/configurePr
577
562
task ( "configure-experimental" , series ( buildScripts , configureExperimental ) ) ;
578
563
task ( "configure-experimental" ) . description = "Runs scripts/configurePrerelease.ts to prepare a build for experimental publishing" ;
579
564
580
- const createLanguageServicesBuild = ( ) => exec ( process . execPath , [ "scripts/createLanguageServicesBuild.js" ] ) ;
581
- task ( "create-language-services-build" , series ( buildScripts , createLanguageServicesBuild ) ) ;
582
- task ( "create-language-services-build" ) . description = "Runs scripts/createLanguageServicesBuild.ts to prepare a build which only has the require('typescript') JS." ;
583
-
584
565
const publishNightly = ( ) => exec ( "npm" , [ "publish" , "--tag" , "next" ] ) ;
585
566
task ( "publish-nightly" , series ( task ( "clean" ) , task ( "LKG" ) , task ( "clean" ) , task ( "runtests-parallel" ) , publishNightly ) ) ;
586
567
task ( "publish-nightly" ) . description = "Runs `npm publish --tag next` to create a new nightly build on npm" ;
0 commit comments