Skip to content

Commit 5ec35c1

Browse files
authored
Readd configure-insiders task to Gulpfile (microsoft#29907)
It's identical to configure-nightly but with the flag changed from dev to insiders. We use it to manually publish an insiders build via pipeline, and went missing when we copied functionality from the jakefile.
1 parent ad7702f commit 5ec35c1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Gulpfile.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -618,6 +618,10 @@ const configureNightly = () => exec(process.execPath, ["scripts/configurePrerele
618618
task("configure-nightly", series(buildScripts, configureNightly));
619619
task("configure-nightly").description = "Runs scripts/configurePrerelease.ts to prepare a build for nightly publishing";
620620

621+
const configureInsiders = () => exec(process.execPath, ["scripts/configurePrerelease.js", "insiders", "package.json", "src/compiler/core.ts"])
622+
task("configure-insiders", series(buildScripts, configureInsiders));
623+
task("configure-insiders").description = "Runs scripts/configurePrerelease.ts to prepare a build for insiders publishing";
624+
621625
const publishNightly = () => exec("npm", ["publish", "--tag", "next"]);
622626
task("publish-nightly", series(task("clean"), task("LKG"), task("clean"), task("runtests-parallel"), publishNightly));
623627
task("publish-nightly").description = "Runs `npm publish --tag next` to create a new nightly build on npm";

0 commit comments

Comments
 (0)