hash-webpack-plugin_clone
v0.0.5
Published
Clone of Xpepermint's hash manifest file writer plugin for Webpack.
Downloads
1
Maintainers
Readme
hash-webpack-plugin
Clone of xpepermint's hash manifest file writer plugin for Webpack.
Original repository: https://github.com/xpepermint/hash-webpack-plugin
Setup
npm install --save-dev hash-webpack-plugin
Example
...
const HashPlugin = require('hash-webpack-plugin');
module.exports = {
...
plugins: [
new HashPlugin({ path: './build', fileName: 'hash.txt' })
]
};