noop-webpack-plugin

1.0.1 • Public • Published

noop-webpack-plugin

npm

Webpack plugin that does nothing

Installation

npm i noop-webpack-plugin -D

Usage

var webpack = require('webpack')
var noop = require('noop-webpack-plugin')
var isProd = process.env.NODE_ENV === 'production'
 
module.exports = {
  entry: './src/entry.js',
  output: {
    path: './dist',
    filename: '[name].js'
  },
  plugins: [
    isProd ? new webpack.optimize.UglifyJsPlugin() : noop()
  ]
}

License

MIT

/noop-webpack-plugin/

    Package Sidebar

    Install

    npm i noop-webpack-plugin

    Weekly Downloads

    2,694

    Version

    1.0.1

    License

    MIT

    Last publish

    Collaborators

    • qingwei.li