Merge pull request #21431 from Microsoft/buildDuhpendencies

Fix dependency for 'publish-nightly'.
This commit is contained in:
Daniel Rosenwasser 2018-01-26 17:13:31 -08:00 committed by GitHub
commit 02e79849ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -594,7 +594,7 @@ task("configure-insiders", [configurePrereleaseJs], function () {
}, { async: true });
desc("Configure, build, test, and publish the insiders release.");
task("publish-insiders", ["configure-nightly", "LKG", "clean", "setDebugMode", "runtests-parallel"], function () {
task("publish-insiders", ["configure-insiders", "LKG", "clean", "setDebugMode", "runtests-parallel"], function () {
var cmd = "npm publish --tag insiders";
console.log(cmd);
exec(cmd);