2.0.4 • Published 5 years ago

nukecss-webpack v2.0.4

Weekly downloads
27
License
MIT
Repository
github
Last release
5 years ago

nukecss-webpack

NPM Package Build Status Coverage Status Commitizen friendly Dependencies

Uses nukecss to eliminate unused css from your webpack bundle. Support for the extract-text-webpack-plugin and for style-loader.

# for webpack 4 and mini-css-extract-plugin
npm install --save-dev nukecss-webpack
# for webpack 2/3 and extract-text-webpack-plugin
npm install --save-dev nukecss-webpack@^1.4.0
```


## Usage

#### Install nukecss-webpack
`npm install --save-dev nukecss-webpack`

#### Setup Your Webpack Configuration
```js
const NukeCssPlugin = require('nukecss-webpack')

module.exports = {
  entry: 'my-entry.js',
  output: {
    // ...
  },
  plugins: [
    // ...
    new NukeCssPlugin()
  ],
}

Save Bytes

Before

out.css   146 kB       0  [emitted]  main

After

out.css  6.82 kB       0  [emitted]  main
2.0.4

5 years ago

2.0.3

6 years ago

2.0.2

6 years ago

2.0.1

6 years ago

2.0.0

6 years ago

1.4.0

7 years ago

1.3.0

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago