Skip to content

Commit 109e0e2

Browse files
committed
Merge pull request #8033 from bowdenk7/jakeChange
Reorder host in jakefile so TYPESCRIPT_HOST is checked before localhost
2 parents 873574f + e33203a commit 109e0e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Jakefile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ function concatenateFiles(destinationFile, sourceFiles) {
244244
}
245245

246246
var useDebugMode = true;
247-
var host = (process.env.host || process.env.TYPESCRIPT_HOST || "node");
247+
var host = (process.env.TYPESCRIPT_HOST || process.env.host || "node");
248248
var compilerFilename = "tsc.js";
249249
var LKGCompiler = path.join(LKGDirectory, compilerFilename);
250250
var builtLocalCompiler = path.join(builtLocalDirectory, compilerFilename);

0 commit comments

Comments
 (0)