JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 39
  • Score
    100M100P100Q61875F
  • License MIT

CodeCoupler Webpack Externals Factory

Package Exports

  • @codecoupler/cc-webpack-externals-plugin

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@codecoupler/cc-webpack-externals-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

CodeCoupler Webpack Externals Plugin

The CodeCoupler Webpack Externals Plugin is a concept to simplify the configuration of Webpack regarding libraries that will be used but should not bundled.

Please read the documentation at https://codecoupler.org/cc-webpack-externals-plugin

Quick Start:

npm i @codecoupler/cc-webpack-externals-plugin -D
  • You must be running Node 10.0 along with Webpack 5.0 or higher for version 2.x of this plugin.
  • You must be running Node 8.6 or higher for version 1.x of this plugin

Add to your Webpack configuration:

const ccWebpackExternalsPlugin = require("@codecoupler/cc-webpack-externals-plugin");
module.exports = {
  plugins: [new ccWebpackExternalsPlugin(options)],
};