@@ -486,21 +486,6 @@ task("baseline-accept").description = "Makes the most recent test results the ne
486486task ( "baseline-accept-rwc" , ( ) => baselineAccept ( localRwcBaseline , refRwcBaseline ) ) ;
487487task ( "baseline-accept-rwc" ) . description = "Makes the most recent rwc test results the new baseline, overwriting the old baseline" ;
488488
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-
504489// TODO(rbuckton): Determine if we still need this task. Depending on a relative
505490// path here seems like a bad idea.
506491const updateSublime = ( ) => src ( [ "built/local/tsserver.js" , "built/local/tsserver.js.map" ] )
@@ -577,10 +562,6 @@ const configureExperimental = () => exec(process.execPath, ["scripts/configurePr
577562task ( "configure-experimental" , series ( buildScripts , configureExperimental ) ) ;
578563task ( "configure-experimental" ) . description = "Runs scripts/configurePrerelease.ts to prepare a build for experimental publishing" ;
579564
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-
584565const publishNightly = ( ) => exec ( "npm" , [ "publish" , "--tag" , "next" ] ) ;
585566task ( "publish-nightly" , series ( task ( "clean" ) , task ( "LKG" ) , task ( "clean" ) , task ( "runtests-parallel" ) , publishNightly ) ) ;
586567task ( "publish-nightly" ) . description = "Runs `npm publish --tag next` to create a new nightly build on npm" ;
0 commit comments