Socket
Socket
Sign inDemoInstall

fork-ts-checker-webpack-plugin

Package Overview
Dependencies
9
Maintainers
4
Versions
222
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.5.0 to 0.5.1

6

CHANGELOG.md

@@ -0,2 +1,7 @@

## v0.5.1
* [Make the checker compile with TypeScript 3.2](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/189)
## 0.5.0
* Removed unused dependency `resolve`.

@@ -11,3 +16,2 @@ * Replace `lodash` usage with native calls.

## v0.4.15

@@ -14,0 +18,0 @@

5

lib/IncrementalChecker.js

@@ -141,6 +141,7 @@ "use strict";

.checkSyntacticErrors
? program.getSemanticDiagnostics(sourceFile, cancellationToken)
? program
.getSemanticDiagnostics(sourceFile, cancellationToken)
.concat(program.getSyntacticDiagnostics(sourceFile, cancellationToken))
: program.getSemanticDiagnostics(sourceFile, cancellationToken);
diagnostics.push.apply(diagnostics, diagnosticsToRegister);
diagnostics.push(...diagnosticsToRegister);
});

@@ -147,0 +148,0 @@ // normalize and deduplicate diagnostics

{
"name": "fork-ts-checker-webpack-plugin",
"version": "0.5.0",
"version": "0.5.1",
"description": "Runs typescript type checker and linter on separate process.",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc