scotch / angular-brunch-seed

AngularJS + Brunch
Other
228 stars 78 forks source link

Added a regex to ignore files which start with an underscore. #99

Closed bradens closed 10 years ago

bradens commented 10 years ago

The first (.*?\/) of the regex check for anyhing before the file, and then anything with an underscore and non-whitespace ([_]\w*) is included in the result.

(.*?\/)?[_]\w*)

This was required because processors like sass-brunch were failing on compilations.

kylefinley commented 10 years ago

@bradens, Thanks for doing this.

bradens commented 10 years ago

@kylefinley No problem :+1: