esbuild-plugin-node-externals
Advanced tools
Comparing version 0.1.0 to 0.1.2
{ | ||
"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 |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
183
53
0
10205
14