Skip to content

Commit

Permalink
Fix nightly publish oops in Gulpfile (#51131)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Oct 10, 2022
1 parent a7d10f1 commit c01ae01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gulpfile.mjs
Expand Up @@ -536,7 +536,7 @@ task("generate-spec").description = "Generates a Markdown version of the Languag
task("clean", series(parallel(cleanTasks), cleanBuilt));
task("clean").description = "Cleans build outputs";

const configureNightly = () => exec(process.execPath, ["scripts/configurePrerelease.js", "dev", "package.json", "src/compiler/corePublic.ts"]);
const configureNightly = () => exec(process.execPath, ["scripts/configurePrerelease.mjs", "dev", "package.json", "src/compiler/corePublic.ts"]);
task("configure-nightly", series(buildScripts, configureNightly));
task("configure-nightly").description = "Runs scripts/configurePrerelease.ts to prepare a build for nightly publishing";

Expand Down

0 comments on commit c01ae01

Please sign in to comment.