0.2.0 • Published 9 years ago

manifest-webpack-plugin v0.2.0

Weekly downloads
19
License
ISC
Repository
github
Last release
9 years ago

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