New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

parcel-plugin-externals

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

parcel-plugin-externals - npm Package Compare versions

Comparing version 0.5.1 to 0.5.2-pre.20201115.4

4

CHANGELOG.md
# parcel-plugin-externals Changelog
## 0.5.2
- Fixed failed to bundle when external does not exist (#24)
## 0.5.1

@@ -4,0 +8,0 @@

2

package.json
{
"name": "parcel-plugin-externals",
"version": "0.5.1",
"version": "0.5.2-pre.20201115.4",
"description": "A plugin for Parcel to omit declared externals from being included in the emitted bundles.",

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

@@ -163,3 +163,3 @@ const { readFileSync, existsSync, realpathSync } = require("fs");

externals.push(
...modules.map((m) => ({
...modules.filter(m => existsSync(m.path)).map((m) => ({
...m,

@@ -166,0 +166,0 @@ path: realpathSync(m.path),

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