You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2020. It is now read-only.
Does the "files" array always convert one source css file to one target file? Or can you give an example on how to use wildcards here (if possible with purgcss, like in the "content" option)
So basically what I want is:
Purge any css file in given directory structure and output every file (with the same name) to specified output directory
Does the "files" array always convert one source css file to one target file? Or can you give an example on how to use wildcards here (if possible with purgcss, like in the "content" option)
So basically what I want is:
Something like:
files: { 'purged_output/**/*.css': 'scr/css/**/*.css' }Plan B would be to purge all source css files into one large (purged) css file but I couldn't get that t work, too:
files: { 'purged_output/app.css': 'scr/css/*.css' }results in an empty output file