2.0.1 • Published 5 years ago

webpack-resources-plugin v2.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

webpack-resources-plugin

Webpack plugin that outputs a json map of webpack output files to their public paths and chunk hash values.

Usage

In your webpack.config.js:

let WebpackResourcesPlugin = require('webpack-resources-plugin');

module.exports = {
  // The rest of your webpack config...
  plugins: [
    // Any other plugins you might be using
    new WebpackResourcesPlugin({
      fileName: '/path/to/output.js'
    })
  ]
};

Options

  • fileName: The name of the json file to generate the map in. Default Value: WebpackResources.json
2.0.1

5 years ago

2.0.0

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

6 years ago

1.0.0

7 years ago