1.0.1 • Published 5 years ago

webpack-plugin-issuer v1.0.1

Weekly downloads
13
License
-
Repository
github
Last release
5 years ago

webpack-plugin-issuer

Install

npm install webpack-plugin-issuer --save-dev

How to use

const Issuer = require('webpack-plugin-issuer')

module.exports = {
  entry: 'index.js',
  output: {
    path: __dirname + '/dist',
    filename: 'index_bundle.js'
  },
  plugins: [
    new Issuer({
      reg: /lodash/, // packages you wanna to find 
      output: './issuer.txt' // output file
    })
  ]
}