I currently have something like:
javascripts/ plugin.js plugin.min.js stylesheets/ style.css style.min.css
How would I get
You have several solutions, depending of what you really need.
Ignore all minified files in your project :
*.min.*
Ignore all minified files in a folder :
assets/*.min.*
Ignore only JS/CSS minified files in your project :
*.min.js *.min.css