Revert "Run jake in interactive mode so output isn't lost."

This commit is contained in:
Daniel Rosenwasser
2015-03-03 22:12:06 -08:00
parent fedc809c3b
commit 212aeb5e53
6 changed files with 208 additions and 46 deletions

View File

@@ -258,7 +258,7 @@ module ts {
reportDiagnostic(createCompilerDiagnostic(Diagnostics.Compilation_complete_Watching_for_file_changes));
}
function getSourceFile(fileName: string, languageVersion: ScriptTarget, onError?: (message: string) => void) {
function getSourceFile(fileName: string, languageVersion: ScriptTarget, onError ?: (message: string) => void) {
// Return existing SourceFile object if one is available
if (cachedProgram) {
var sourceFile = cachedProgram.getSourceFile(fileName);