henyojess / generator-gulp-ng

This is a yeoman generator for an angularjs project that follows the Best Practice Recommendations for Angular App Structure. It takes advantage of the gulp build tool and makes use of bower and npm for dependency management.
137 stars 27 forks source link

Rename files to match naming conventions #14

Closed dustinboss closed 10 years ago

dustinboss commented 10 years ago

Thanks for creating this generator! This is the configuration that I like, but you have a slight issue with your file naming, if you want to be consistent with the Google recommended Angular structure. The file names should use hyphens instead of underscores (except for test files).

So "main_controller.js" should be "main-controller.js" and "main-controller_test.js".

I updated the file names -- content is all the same.

henyojess commented 10 years ago

Thanks