@@ -174,7 +174,7 @@ for (const i in libraryTargets) {
174174const configureNightlyJs = path . join ( scriptsDirectory , "configureNightly.js" ) ;
175175const configureNightlyTs = path . join ( scriptsDirectory , "configureNightly.ts" ) ;
176176const packageJson = "package.json" ;
177- const programTs = path . join ( compilerDirectory , "program .ts" ) ;
177+ const versionFile = path . join ( compilerDirectory , "core .ts" ) ;
178178
179179function needsUpdate ( source : string | string [ ] , dest : string | string [ ] ) : boolean {
180180 if ( typeof source === "string" && typeof dest === "string" ) {
@@ -282,7 +282,7 @@ gulp.task(configureNightlyJs, false, [], () => {
282282
283283// Nightly management tasks
284284gulp . task ( "configure-nightly" , "Runs scripts/configureNightly.ts to prepare a build for nightly publishing" , [ configureNightlyJs ] , ( done ) => {
285- exec ( host , [ configureNightlyJs , packageJson , programTs ] , done , done ) ;
285+ exec ( host , [ configureNightlyJs , packageJson , versionFile ] , done , done ) ;
286286} ) ;
287287gulp . task ( "publish-nightly" , "Runs `npm publish --tag next` to create a new nightly build on npm" , [ "LKG" ] , ( ) => {
288288 return runSequence ( "clean" , "useDebugMode" , "runtests" , ( done ) => {
0 commit comments