UNPKG

parcel-plugin-externals

Version:

A plugin for Parcel to omit declared externals from being included in the emitted bundles.

12 lines (10 loc) 288 B
const { extendBundlerWithExternals, retrieveExternals, findTarget } = require("./utils"); module.exports = function(bundler) { const target = findTarget(bundler.options.rootDir); const externals = retrieveExternals(target); extendBundlerWithExternals(bundler, externals); };