minifier
minifier copied to clipboard
ignore files
can you ignore files?
No. What would be the point? All files going over the wire should be minified.
some file within a dependency package are sometimes not used which is usually less than the majority. Rather than list out each file you want to use we can "glob" match files and exclude those we do not want....
shame though
How about filtering the list before passing it in? Then we would have one less filter-implementation to struggle with
using the CLI?
Sure. I don't know how you use it now, but xargs can probably help you pass in a list as individually files. Or you could enumerate the list in bash or another script-language.