Skip to content

Commit c184ad7

Browse files
committed
Updates for nightly publish
1 parent 1d45810 commit c184ad7

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

Jakefile.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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
150150
desc("Makes a new LKG out of the built js files");
151151
task(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

219218
desc("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

231229
desc("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

src/tsc/tsconfig.release.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"preserveConstEnums": false,
77
"declaration": false,
88
"declarationMap": false,
9+
"sourceMap": false,
910
"composite": false
1011
},
1112
"files": [

0 commit comments

Comments
 (0)