@@ -149,7 +149,6 @@ task(TaskNames.scripts, [TaskNames.coreBuild], function() {
149149// Makes a new LKG. This target does not build anything, but errors if not all the outputs are present in the built/local directory
150150desc ( "Makes a new LKG out of the built js files" ) ;
151151task ( TaskNames . lkg , [
152- TaskNames . clean ,
153152 TaskNames . scripts ,
154153 TaskNames . release ,
155154 TaskNames . local ,
@@ -217,9 +216,8 @@ task(TaskNames.configureNightly, [TaskNames.scripts], function () {
217216} , { async : true } ) ;
218217
219218desc ( "Configure, build, test, and publish the nightly release." ) ;
220- task ( TaskNames . publishNightly , [ TaskNames . configureNightly , TaskNames . lkg , "setDebugMode" , "runtests-parallel" ] , function ( ) {
219+ task ( TaskNames . publishNightly , [ TaskNames . coreBuild , TaskNames . configureNightly , TaskNames . lkg , "setDebugMode" , "runtests-parallel" ] , function ( ) {
221220 var cmd = "npm publish --tag next" ;
222- console . log ( cmd ) ;
223221 exec ( cmd , ( ) => complete ( ) ) ;
224222} , { async : true } ) ;
225223
@@ -229,9 +227,8 @@ task(TaskNames.configureInsiders, [TaskNames.scripts], function () {
229227} , { async : true } ) ;
230228
231229desc ( "Configure, build, test, and publish the insiders release." ) ;
232- task ( TaskNames . publishInsiders , [ TaskNames . configureInsiders , TaskNames . lkg , "setDebugMode" , "runtests-parallel" ] , function ( ) {
230+ task ( TaskNames . publishInsiders , [ TaskNames . coreBuild , TaskNames . configureInsiders , TaskNames . lkg , "setDebugMode" , "runtests-parallel" ] , function ( ) {
233231 var cmd = "npm publish --tag insiders" ;
234- console . log ( cmd ) ;
235232 exec ( cmd , ( ) => complete ( ) ) ;
236233} , { async : true } ) ;
237234
0 commit comments