Skip to content

Commit de82c54

Browse files
committed
Remove extra dependency + build smaller tsc.js into lkg
1 parent 88cf310 commit de82c54

5 files changed

Lines changed: 11987 additions & 28118 deletions

File tree

Jakefile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,14 +113,14 @@ task(TaskNames.local, [
113113
const RunTestsPrereqs = [TaskNames.lib, Paths.servicesDefinitionFile, Paths.tsserverLibraryDefinitionFile];
114114
desc("Runs all the tests in parallel using the built run.js file. Optional arguments are: t[ests]=category1|category2|... d[ebug]=true.");
115115
task(TaskNames.runtestsParallel, RunTestsPrereqs, function () {
116-
tsbuild([ConfigFileFor.runjs, ConfigFileFor.lint], true, () => {
116+
tsbuild([ConfigFileFor.runjs], true, () => {
117117
runConsoleTests("min", /*parallel*/ true);
118118
});
119119
}, { async: true });
120120

121121
desc("Runs all the tests in parallel using the built run.js file. Optional arguments are: t[ests]=category1|category2|... d[ebug]=true.");
122122
task(TaskNames.runtests, RunTestsPrereqs, function () {
123-
tsbuild([ConfigFileFor.runjs, ConfigFileFor.lint], true, () => {
123+
tsbuild([ConfigFileFor.runjs], true, () => {
124124
runConsoleTests('mocha-fivemat-progress-reporter', /*runInParallel*/ false);
125125
});
126126
}, { async: true });

0 commit comments

Comments
 (0)