typescript-service
Advanced tools
Comparing version
@@ -0,1 +1,5 @@ | ||
## <small>2.0.2 (2018-08-26)</small> | ||
* fix: Restored getSource file fallback implementation ([e29755c](https://github.com/unlight/typescript-service/commit/e29755c)) | ||
## <small>2.0.1 (2018-08-26)</small> | ||
@@ -2,0 +6,0 @@ |
@@ -5,2 +5,3 @@ "use strict"; | ||
var create_program_1 = require("./create-program"); | ||
var get_source_file_1 = require("./get-source-file"); | ||
function createService(_a) { | ||
@@ -19,3 +20,3 @@ var compilerOptions = _a.compilerOptions, configFile = _a.configFile; | ||
} | ||
return sourceFile; | ||
return sourceFile || get_source_file_1.getSourceFile(program, fileName, sourceText); | ||
}, | ||
@@ -22,0 +23,0 @@ getDiagnostics: function (fileName, sourceText) { |
{ | ||
"name": "typescript-service", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "", |
import * as ts from 'typescript'; | ||
import { createProgram } from './create-program'; | ||
import { getSourceFile } from './get-source-file'; | ||
@@ -21,3 +22,3 @@ type createServiceOptions = { | ||
} | ||
return sourceFile; | ||
return sourceFile || getSourceFile(program, fileName, sourceText); | ||
}, | ||
@@ -24,0 +25,0 @@ getDiagnostics: (fileName: string, sourceText?: string) => { |
Sorry, the diff of this file is not supported yet
23138
9.75%27
12.5%334
10.23%