Socket
Socket
Sign inDemoInstall

vite-plugin-checker

Package Overview
Dependencies
Maintainers
1
Versions
60
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vite-plugin-checker - npm Package Compare versions

Comparing version 0.4.4-beta.3 to 0.4.4-beta.4

8

lib/checkers/vueTsc/prepareVueTsc.js

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

const vueTscFlagFile = path_1.default.resolve(targetTsDir, 'vue-tsc-resolve-path');
let shouldPrepare = false;
let shouldPrepare = true;
const targetDirExist = fs_1.default.existsSync(targetTsDir);

@@ -48,5 +48,5 @@ if (targetDirExist) {

// check fixture versions before re-use
if (targetTsVersion !== currTsVersion ||
!fs_1.default.existsSync(vueTscFlagFile) ||
fs_1.default.readFileSync(vueTscFlagFile, 'utf8') !== proxyPath) {
if (targetTsVersion === currTsVersion &&
fs_1.default.existsSync(vueTscFlagFile) &&
fs_1.default.readFileSync(vueTscFlagFile, 'utf8') === proxyPath) {
shouldPrepare = true;

@@ -53,0 +53,0 @@ }

{
"name": "vite-plugin-checker",
"version": "0.4.4-beta.3",
"version": "0.4.4-beta.4",
"description": "Vite plugin that runs TypeScript type checker on a separate process.",

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

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