Socket
Socket
Sign inDemoInstall

type-coverage-core

Package Overview
Dependencies
Maintainers
1
Versions
75
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

type-coverage-core - npm Package Compare versions

Comparing version 2.17.2 to 2.17.3

7

dist/tsconfig.js

@@ -8,2 +8,3 @@ "use strict";

const fg = require("fast-glob");
const normalize = require("normalize-path");
/**

@@ -138,7 +139,7 @@ * @public

// https://github.com/mrmlnc/fast-glob#how-to-exclude-directory-from-reading
const ignore = [];
let ignore = [];
for (const e of exclude) {
ignore.push(e, `**/${e}`);
}
const rules = [];
let rules = [];
for (const file of include) {

@@ -154,2 +155,4 @@ const currentPath = path.resolve(dirname, file);

}
rules = rules.map((r) => normalize(r));
ignore = ignore.map((r) => normalize(r));
const includeFiles = await fg(rules, {

@@ -156,0 +159,0 @@ ignore,

{
"name": "type-coverage-core",
"version": "2.17.2",
"version": "2.17.3",
"description": "A library to check type coverage for typescript code",

@@ -13,2 +13,3 @@ "main": "dist/index.js",

"minimatch": "3",
"normalize-path": "3",
"tslib": "1 || 2",

@@ -15,0 +16,0 @@ "tsutils": "3"

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