mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-12-12 11:50:54 -06:00
Updates for nightly publish
This commit is contained in:
parent
1d45810df2
commit
c184ad7a41
@ -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 });
|
||||
|
||||
|
||||
@ -6,6 +6,7 @@
|
||||
"preserveConstEnums": false,
|
||||
"declaration": false,
|
||||
"declarationMap": false,
|
||||
"sourceMap": false,
|
||||
"composite": false
|
||||
},
|
||||
"files": [
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user