Updates for nightly publish

This commit is contained in:
Ryan Cavanaugh 2018-06-13 15:32:13 -07:00
parent 1d45810df2
commit c184ad7a41
2 changed files with 3 additions and 5 deletions

View File

@ -149,7 +149,6 @@ task(TaskNames.scripts, [TaskNames.coreBuild], function() {
// Makes a new LKG. This target does not build anything, but errors if not all the outputs are present in the built/local directory
desc("Makes a new LKG out of the built js files");
task(TaskNames.lkg, [
TaskNames.clean,
TaskNames.scripts,
TaskNames.release,
TaskNames.local,
@ -217,9 +216,8 @@ task(TaskNames.configureNightly, [TaskNames.scripts], function () {
}, { async: true });
desc("Configure, build, test, and publish the nightly release.");
task(TaskNames.publishNightly, [TaskNames.configureNightly, TaskNames.lkg, "setDebugMode", "runtests-parallel"], function () {
task(TaskNames.publishNightly, [TaskNames.coreBuild, TaskNames.configureNightly, TaskNames.lkg, "setDebugMode", "runtests-parallel"], function () {
var cmd = "npm publish --tag next";
console.log(cmd);
exec(cmd, () => complete());
}, { async: true });
@ -229,9 +227,8 @@ task(TaskNames.configureInsiders, [TaskNames.scripts], function () {
}, { async: true });
desc("Configure, build, test, and publish the insiders release.");
task(TaskNames.publishInsiders, [TaskNames.configureInsiders, TaskNames.lkg, "setDebugMode", "runtests-parallel"], function () {
task(TaskNames.publishInsiders, [TaskNames.coreBuild, TaskNames.configureInsiders, TaskNames.lkg, "setDebugMode", "runtests-parallel"], function () {
var cmd = "npm publish --tag insiders";
console.log(cmd);
exec(cmd, () => complete());
}, { async: true });

View File

@ -6,6 +6,7 @@
"preserveConstEnums": false,
"declaration": false,
"declarationMap": false,
"sourceMap": false,
"composite": false
},
"files": [