1.0.1 • Published 6 years ago

run-postcss-after-compilation-webpack-plugin v1.0.1

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

run-postcss-after-compilation-webpack-plugin

npm version

Plugin used to run PostCSS on Webpack CSS output. Useful for applying the PostCSS processing on the bundled CSS instead of per-file.

Works with Webpack (>= 4.0).

Install

npm install --save-dev run-postcss-after-compilation-webpack-plugin

Usage

You must pass the absolute path to the postcss.config.js file to the plugin's constructor.

// webpack.config.js

const RunPostCSSAfterCompilationPlugin = require('run-postcss-after-compilation-webpack-plugin');

module.exports = {
	plugins: {
		new RunPostCSSAfterCompilationPlugin(path.resolve(__dirname, "postcss.config.js"))
	}
}