Skip to content

Commit 4953316

Browse files
authoredOct 4, 2022
Remove configureLanguageServiceBuild, instrumenter (#51048)
1 parent 9dfffd0 commit 4953316

File tree

5 files changed

+0
-190
lines changed

5 files changed

+0
-190
lines changed
 

‎Gulpfile.js

-19
Original file line numberDiff line numberDiff line change
@@ -486,21 +486,6 @@ task("baseline-accept").description = "Makes the most recent test results the ne
486486
task("baseline-accept-rwc", () => baselineAccept(localRwcBaseline, refRwcBaseline));
487487
task("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.
506491
const updateSublime = () => src(["built/local/tsserver.js", "built/local/tsserver.js.map"])
@@ -577,10 +562,6 @@ const configureExperimental = () => exec(process.execPath, ["scripts/configurePr
577562
task("configure-experimental", series(buildScripts, configureExperimental));
578563
task("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-
584565
const publishNightly = () => exec("npm", ["publish", "--tag", "next"]);
585566
task("publish-nightly", series(task("clean"), task("LKG"), task("clean"), task("runtests-parallel"), publishNightly));
586567
task("publish-nightly").description = "Runs `npm publish --tag next` to create a new nightly build on npm";

‎scripts/configureLanguageServiceBuild.ts

-87
This file was deleted.

‎src/instrumenter/instrumenter.ts

-43
This file was deleted.

‎src/instrumenter/tsconfig.json

-16
This file was deleted.

‎src/loggedIO/tsconfig-tsc-instrumented.json

-25
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.