Running PostCSS compiled style sheets through purifycss with Gulp

452 Views Asked by At

I have a task that first runs CSS files through postcss plugins and then through purifycss like this:

.pipe(postcss(processors))
.pipe(purify(['src/test/html/*.html']))
.pipe(gulp.dest(PLI.target.test.css));

However the CSS is not being purified. Anyone know why?

The actual task that is running the build can be found here: superfly-css-task-build

If you clone this project and run npm i && npm run test and then look in the target/test/css/index.css all the un used CSS is still contained in the file even though src/test/html/index.html is used as the purifycss filter.

0

There are 0 best solutions below