0.0.5 • Published 5 years ago

hash-webpack-plugin_clone v0.0.5

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

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' })
  ]
};