I am looking for a better glob pattern for usemin, i want to to find all .js files but exclude the .spec.js files. I have the following solution so far
.js
.spec.js
This glob includes all *.js but not *.spec.js:
*.js
*.spec.js
components/**/!(*.spec).js