New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

typescript-service

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typescript-service - npm Package Compare versions

Comparing version

to
2.0.2

dist/get-source-file.js

4

CHANGELOG.md

@@ -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 @@

3

dist/index.js

@@ -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