Socket
Socket
Sign inDemoInstall

fork-ts-checker-webpack-plugin

Package Overview
Dependencies
Maintainers
4
Versions
222
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fork-ts-checker-webpack-plugin - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

4

CHANGELOG.md

@@ -0,1 +1,5 @@

## v1.0.1
* [Apply rounding to compilation time](https://github.com/Realytics/fork-ts-checker-webpack-plugin/pull/235)
## v1.0.0

@@ -2,0 +6,0 @@

3

lib/index.js

@@ -412,3 +412,4 @@ "use strict";

const delta = this.performance.now() - this.startAt;
this.logger.info(`compilation took: ${delta} ms.`);
const deltaRounded = Math.round(delta * 100) / 100;
this.logger.info(`Compilation took: ${deltaRounded} ms.`);
}

@@ -415,0 +416,0 @@ if (this.cancellationToken) {

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

@@ -81,3 +81,3 @@ "main": "lib/index.js",

"vue-template-compiler": "^2.5.16",
"webpack": "^5.0.0-alpha.5"
"webpack": "^4.0.0"
},

@@ -84,0 +84,0 @@ "dependencies": {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc