postcss-asset-webpack-plugin

1.0.2 • Public • Published

postcss-asset-webpack-plugin

Run postcss on CSS assets after compilation.

Why

css-loader runs postcss on individual files. If you use extract-text-webpack-plugin you may want postcss to run after extract-text-webpack-plugin has concatenated files into a single CSS asset.

We had duplicate styles across multiple files because of nested @imports. The duplicate styles weren't being removed by css-loader, because, when css-loader runs it doesn't know that the file being processed will be concatenated with other files that contain the same styles and will result in duplicated styles. This plugin allows us to run cssnano after the files have been concatenated, when the duplicate styles can be found and removed.

Installation

npm install --save postcss-asset-webpack-plugin

Usage

const PostcssAssetWebpackPlugin = require('postcss-asset-webpack-plugin');
const cssnano = require('cssnano');

module.exports = {
  plugins: {
    new PostcssAssetWebpackPlugin({postcss: [cssnano()]})
  }
}

Package Sidebar

Install

npm i postcss-asset-webpack-plugin

Weekly Downloads

50

Version

1.0.2

License

MIT

Unpacked Size

2.54 kB

Total Files

3

Last publish

Collaborators

  • jameslnewell
  • lauriejones