0.0.1 • Published 7 years ago

webpack-provide-global-plugin v0.0.1

Weekly downloads
196
License
MIT
Repository
github
Last release
7 years ago

Provides installed packages as globals for webpack

Helper plugin that uses the webpack ProvidePlugin with the help of the (imports-loader)https://github.com/webpack-contrib/imports-loader and the (exports-loader)https://github.com/webpack-contrib/exports-loader.

Installation

You must be running webpack on node 0.12.x or higher

Install the plugin with npm:

$ npm install --save-dev webpack-provide-global-plugin

Example

Setting up fetch and Promise globals:

plugins: [
    new WebpackProvideGlobalPlugin({
        "es6-promise": "Promise",
        "whatwg-fetch": "fetch"
    })
]

This is is identical to writing:

plugins: [
    new webpack.ProvidePlugin({
        "Promise": "imports-loader?this=>global!exports-loader?global.Promise!es6-promise",
        "fetch": "imports-loader?this=>global!exports-loader?global.fetch!whatwg-fetch"
    })
]