JSPM

@cc-external/bootstrap

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

Install package "bootstrap" with externals configuration for "cc-webpack-externals-plugin"

Package Exports

    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 (@cc-external/bootstrap) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Configuration Package for @codecoupler/cc-webpack-externals-plugin

    If you use the plugin @codecoupler/cc-webpack-externals-plugin in your Webpack configuration you can install with this package the NPM module bootstrap and automatically configure this as external library. The module will not be included in your library bundle.

    Usage:

    npm i @cc-external/bootstrap

    Popper.js is not included. If you need Popper use the separate cc-external package:

    npm i @cc-external/popperjs_core
    npm i @cc-external/bootstrap

    And add the following to the webpack.externals.js:

    module.exports = [
      {
        module: "@popperjs/core",
        moveTo: { module: "bootstrap", place: "before" }
      },
    ];

    The version number of this package matches the major and minor number of the module bootstrap that is included as dependency. The patch number do not correspond to the module patch number.