generator-angular-xl
generator-angular-xl copied to clipboard
An opinionated kickstarter for your next large scale AngularJS application
``` this.hookFor('angular-xl:repository', { args: 'awesome' }); ``` commenting out the above on ~line 41 allows the tests to pass both locally and on travis.
Anyone else seeing this on newly created projects? I'm using a cloned version of the generator with local link.
It's better to replace "compass" by "node-sass" because the second doesn't rely on Ruby/Compass Gem installed. node-sass is based on libsass which is faster than any Ruby implementarion.
We should add support for less files. SASS can be enabled by default and we can enable LESS by adding "useLESS: true" to the bower.json. It's quite easy to implement...
When creating state, e.g. ``` yo angular-xl:state users ``` I am getting folder users/index/index-controller.js which is correct. The problem is when I enter e.g. ``` yo angular-xl:state users/edit ``` That...