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

esbuild-plugin-node-externals

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

esbuild-plugin-node-externals - npm Package Compare versions

Comparing version 0.1.0 to 0.1.2

2

package.json
{
"name": "esbuild-plugin-node-externals",
"version": "0.1.0",
"version": "0.1.2",
"description": "ESBuild plugin for node externals handing.",

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

@@ -24,6 +24,8 @@ # esbuild-plugin-node-externals

outfile: './dist/main.js',
plugins: [esbuildPluginNodeExternals({
packagePaths:"apps/nest-app/package.json",
include:["SOME_PKG_YOU_WANT_TO_INCLUDE_AT_BUNDLE"]
})],
plugins: [
esbuildPluginNodeExternals({
packagePaths: 'apps/nest-app/package.json',
include: ['SOME_PKG_YOU_WANT_TO_INCLUDE_AT_BUNDLE'],
}),
],
});

@@ -30,0 +32,0 @@ })();

@@ -6,2 +6,1 @@ "use strict";

Object.defineProperty(exports, "esbuildPluginNodeExternals", { enumerable: true, get: function () { return esbuild_plugin_node_externals_1.esbuildPluginNodeExternals; } });
//# sourceMappingURL=index.js.map

@@ -27,2 +27,1 @@ "use strict";

exports.esbuildPluginNodeExternals = esbuildPluginNodeExternals;
//# sourceMappingURL=esbuild-plugin-node-externals.js.map
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.collectDepsToExclude = void 0;
const tslib_1 = require("tslib");
const jsonfile_1 = tslib_1.__importDefault(require("jsonfile"));
const jsonfile_1 = __importDefault(require("jsonfile"));
const collectDepsToExclude = (options) => {

@@ -43,2 +45,1 @@ const depKeys = [

exports.collectDepsToExclude = collectDepsToExclude;
//# sourceMappingURL=find-deps.js.map
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.findPackagePaths = void 0;
const tslib_1 = require("tslib");
const path_1 = tslib_1.__importDefault(require("path"));
const find_up_1 = tslib_1.__importDefault(require("find-up"));
const path_1 = __importDefault(require("path"));
const find_up_1 = __importDefault(require("find-up"));
const is_in_dir_1 = require("./is-in-dir");

@@ -26,2 +28,1 @@ const findPackagePaths = () => {

exports.findPackagePaths = findPackagePaths;
//# sourceMappingURL=find-package-path.js.map
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.isInGitDirectory = exports.isInDirectory = void 0;
const tslib_1 = require("tslib");
const path_1 = tslib_1.__importDefault(require("path"));
const path_1 = __importDefault(require("path"));
// parent: a/b

@@ -34,2 +36,1 @@ // child: a/b/c

exports.isInGitDirectory = isInGitDirectory;
//# sourceMappingURL=is-in-dir.js.map

@@ -26,2 +26,1 @@ "use strict";

exports.normalizeOptions = normalizeOptions;
//# sourceMappingURL=normalize-options.js.map
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