manifest-webpack-plugin
v0.2.0
Published
generate manifest.json
Downloads
44
Maintainers
Readme
Simple plugin for generation manifest file.
Installation
npm install --save manifest-webpack-plugin
Example
var path = require('path');
var Manifest = require('manifest-webpack-plugin');
module.exports = {
module: {
loaders: [
{
test: /\.(gif|svg)$/
loader: 'file-loader'
}
]
},
plugins: [
new Manifest(path.join('build', 'manifest.json')) // path to manifest file
]
};