bundlebee 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +5 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -221,7 +221,7 @@ module.exports = class Bundlebee extends ReadyResource {
|
|
|
221
221
|
})
|
|
222
222
|
}
|
|
223
223
|
|
|
224
|
-
async add(root, entry, { skipModules = true, peerDependencies, abi } = {}) {
|
|
224
|
+
async add(root, entry, { skipModules = true, peerDependencies, abi, dryRun = false } = {}) {
|
|
225
225
|
if (!this.opened) await this.ready()
|
|
226
226
|
if (!root.pathname.endsWith('/')) root = new URL('./', root)
|
|
227
227
|
if (peerDependencies) peerDependencies = new Set(peerDependencies)
|
|
@@ -237,11 +237,11 @@ module.exports = class Bundlebee extends ReadyResource {
|
|
|
237
237
|
readModule,
|
|
238
238
|
listPrefix
|
|
239
239
|
)) {
|
|
240
|
-
if (dependency.url.href.
|
|
240
|
+
if (dependency.url.href.includes('/node_modules/')) {
|
|
241
241
|
if (skipModules) continue
|
|
242
242
|
if (peerDependencies) {
|
|
243
243
|
const moduleName = dependency.url.pathname
|
|
244
|
-
.
|
|
244
|
+
.slice(dependency.url.pathname.lastIndexOf('node_modules/') + 13)
|
|
245
245
|
.split('/')[0]
|
|
246
246
|
if (peerDependencies.has(moduleName)) continue
|
|
247
247
|
}
|
|
@@ -268,6 +268,8 @@ module.exports = class Bundlebee extends ReadyResource {
|
|
|
268
268
|
|
|
269
269
|
bundle.resolutions = resolutions
|
|
270
270
|
|
|
271
|
+
if (dryRun) return bundle
|
|
272
|
+
|
|
271
273
|
await this._addBundle({ bundle, abi }, peerDependencies)
|
|
272
274
|
|
|
273
275
|
return bundle
|