purgecss-webpack-plugin icon indicating copy to clipboard operation
purgecss-webpack-plugin copied to clipboard

Purgecss plugin for webpack

Results 9 purgecss-webpack-plugin issues
Sort by recently updated
recently updated
newest added

## The dependency [purgecss](https://github.com/FullHuman/purgecss) was updated from `1.4.2` to `2.0.3`. This version is **not covered** by your **current version range**. If you don’t accept this pull request, your project will...

greenkeeper

Hello, I have some troubles with whitelistPatterns option. I want to whitelist all selectors containing a specific word `slick` so here is my configuration : ```javascript new PurgeCssPlugin({ paths: glob.sync([...

Version: 1.4.0 Platform: MacOS 10.13.6 ### How to reproduce *Note:* Please notice the difference between "purecss" and "purgecss" as it looks similar. 1. Install purecss library ``` npm install purecss...

- Webpack config: ``` const plugins = [ new ExtractTextPlugin({filename: '[name].[contenthash].css', allChunks: true}), new PurgecssPlugin({ paths: glob.sync([ path.join(__dirname, './../app.html'), path.join(__dirname, './../**/*.vue') ]) }) ]; const rules = [ { test:...

I'd like to provide defaults for `purgecss-webpack-plugin` and allow the users of my plugin to provide their own `whitelist` configuration. The docs indicate we could add these options in the...

enhancement

This is perhaps more a question than an issue, but one shouldn't really purge bootstrap stylesheets right? Because if you use it with some bootstrap.js, than some classes will be...

Hey there, I'm using this plugin with Tailwind + VueJS. In regards to both of those, it works flawlessly with the custom extractor. However, I recently decided to start using...

I'm using the contenthash in the filenames to allow long term caching: https://webpack.js.org/guides/caching/ Unfortunately if the content is changed by the PurgeCss plugin **only**, for example since I have removed...

I am trying to follow the following tutorial: https://www.purgecss.com/guides/react with the bootstrap.css file. I have create a fresh create-react-app, ejected the project and modified my webpack file to include the...