Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@rushstack/package-extractor

Package Overview
Dependencies
Maintainers
3
Versions
129
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rushstack/package-extractor - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

2

dist/tsdoc-metadata.json

@@ -8,5 +8,5 @@ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.

"packageName": "@microsoft/api-extractor",
"packageVersion": "7.35.4"
"packageVersion": "7.36.0"
}
]
}

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

const relativeSourcePath = path.relative(sourceFolderPath, sourcePath);
if (relativeSourcePath !== '' &&
(ignoreFilter.ignores(relativeSourcePath) || isFileExcluded(relativeSourcePath))) {
if (relativeSourcePath !== '' && ignoreFilter.ignores(relativeSourcePath)) {
callback();

@@ -462,2 +461,6 @@ return;

if (sourcePathNode.kind === 'file') {
if (relativeSourcePath !== '' && isFileExcluded(relativeSourcePath)) {
callback();
return;
}
const targetPath = path.join(targetFolderPath, relativeSourcePath);

@@ -464,0 +467,0 @@ if (!options.createArchiveOnly) {

{
"name": "@rushstack/package-extractor",
"version": "0.3.1",
"version": "0.3.2",
"description": "A library for bundling selected files and dependencies into a deployable package.",

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

Sorry, the diff of this file is not supported yet

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