Socket
Socket
Sign inDemoInstall

fork-ts-checker-webpack-plugin

Package Overview
Dependencies
196
Maintainers
1
Versions
222
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.3.4 to 6.3.5

2

lib/ForkTsCheckerWebpackPlugin.js

@@ -79,3 +79,3 @@ "use strict";

*/
ForkTsCheckerWebpackPlugin.version = '6.3.4'; // will be replaced by the @semantic-release/exec
ForkTsCheckerWebpackPlugin.version = '6.3.5'; // will be replaced by the @semantic-release/exec
/**

@@ -82,0 +82,0 @@ * Default pools for the plugin concurrency limit

@@ -23,2 +23,3 @@ interface Position {

script: SFCBlock | null;
scriptSetup: SFCBlock | null;
styles: SFCBlock[];

@@ -25,0 +26,0 @@ customBlocks: SFCBlock[];

@@ -76,4 +76,4 @@ "use strict";

const parsed = compiler.parse(vueSourceText);
if (parsed.descriptor && parsed.descriptor.script) {
const scriptV3 = parsed.descriptor.script;
if (parsed.descriptor && (parsed.descriptor.script || parsed.descriptor.scriptSetup)) {
const scriptV3 = (parsed.descriptor.script || parsed.descriptor.scriptSetup);
// map newer version of SFCScriptBlock to the generic one

@@ -80,0 +80,0 @@ script = {

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

@@ -5,0 +5,0 @@ "keywords": [

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