1.0.1 • Published 6 years ago

remove-uncss-webpack-plugin v1.0.1

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

remove-uncss-webpack-plugin

a webpack plugin to shake unused css code


how to use

npm install remove-uncss-webpack-plugin -D

config it in your webpack configuration file, it depends on extracting styles to a file, so please use ExtractTextPlugin first.

var ExtractTextPlugin = require('extract-text-webpack-plugin')
const CssTreeShakingPlugin = require("remove-uncss-webpack-plugin")

module.exports = {
  plugins: [
    new CssTreeShakingPlugin({
      remove: false,
      ignore: ['state-\d']
    }),
    new ExtractTextPlugin({
      filename: 'build/style.css'
    })
  ]
};

configuration

propertytypedefaultdiscription
removebooleanfalsewhether to remove unused css
ignorearray[]items can be a string or a regexp

architechture