Skip to content

Commit e05e112

Browse files
author
Andy Hanson
committed
Remove trailing whitespace in jakefile
1 parent 447e583 commit e05e112

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Jakefile.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ var librarySourceMap = [
208208
{ target: "lib.es2015.d.ts", sources: ["header.d.ts", "es2015.d.ts"] },
209209
{ target: "lib.es2016.d.ts", sources: ["header.d.ts", "es2016.d.ts"] },
210210
{ target: "lib.es2017.d.ts", sources: ["header.d.ts", "es2017.d.ts"] },
211-
211+
212212
// JavaScript + all host library
213213
{ target: "lib.d.ts", sources: ["header.d.ts", "es5.d.ts"].concat(hostsLibrarySources) },
214214
{ target: "lib.es6.d.ts", sources: ["header.d.ts", "es5.d.ts"].concat(es2015LibrarySources, hostsLibrarySources, "dom.iterable.d.ts") }
@@ -521,7 +521,7 @@ compileFile(servicesFileInBrowserTest, servicesSources,[builtLocalDirectory, cop
521521
var i = content.lastIndexOf("\n");
522522
fs.writeFileSync(servicesFileInBrowserTest, content.substring(0, i) + "\r\n//# sourceURL=../built/local/typeScriptServices.js" + content.substring(i));
523523
});
524-
524+
525525

526526
var serverFile = path.join(builtLocalDirectory, "tsserver.js");
527527
compileFile(serverFile, serverSources,[builtLocalDirectory, copyright].concat(serverSources), /*prefixes*/ [copyright], /*useBuiltCompiler*/ true);
@@ -741,10 +741,10 @@ function runConsoleTests(defaultReporter, runInParallel) {
741741
}, function(e, status) {
742742
finish(status);
743743
});
744-
744+
745745
}
746746
else {
747-
// run task to load all tests and partition them between workers
747+
// run task to load all tests and partition them between workers
748748
var cmd = "mocha " + " -R min " + colors + run;
749749
console.log(cmd);
750750
exec(cmd, function() {
@@ -757,9 +757,9 @@ function runConsoleTests(defaultReporter, runInParallel) {
757757
var configPath = path.join(taskConfigsFolder, f);
758758
var workerCmd = "mocha" + " -t " + testTimeout + " -R " + reporter + " " + colors + " " + run + " --config='" + configPath + "'";
759759
console.log(workerCmd);
760-
exec(workerCmd, finishWorker, finishWorker)
760+
exec(workerCmd, finishWorker, finishWorker)
761761
});
762-
762+
763763
function finishWorker(e, errorStatus) {
764764
counter--;
765765
if (firstErrorStatus === undefined && errorStatus !== undefined) {
@@ -783,11 +783,11 @@ function runConsoleTests(defaultReporter, runInParallel) {
783783
}
784784
});
785785
}
786-
786+
787787
function failWithStatus(status) {
788788
fail("Process exited with code " + status);
789789
}
790-
790+
791791
function finish(errorStatus) {
792792
deleteTemporaryProjectOutput();
793793
if (errorStatus !== undefined) {

0 commit comments

Comments
 (0)