0.0.5 • Published 9 years ago

hash-webpack-plugin v0.0.5

Weekly downloads
565
License
MIT
Repository
github
Last release
9 years ago

hash-webpack-plugin

Hash manifest file writer plugin for Webpack.

Do you need to integrate Webpack with your ExpressJS app? Check the express-hash-webpack plugin.

Setup

npm instal --save-dev hash-webpack-plugin

Example

...
var HashPlugin = require('hash-webpack-plugin');

module.exports = {
  ...
  plugins: [
    new HashPlugin({ path: './build', fileName: 'hash.txt' })
  ]
};