generator-cg-angular icon indicating copy to clipboard operation
generator-cg-angular copied to clipboard

Yeoman generator for Enterprise Angular projects.

Results 70 generator-cg-angular issues
Sort by recently updated
recently updated
newest added

This change allows the primary module (JS & LESS) to have a configured location. This is possible my adding an entry to the `modules` array in the yeoman config file...

It would be great if everything non configuration could be put in an `app` directory. I've seen other generators do this and it keeps the top level directory cleaner. So...

This isn't quite the same as #28, but I run various applications with a directory structure that looks like: ``` config.file bower.json composer otherconfig Gruntfile.js etc. |--public |--other_library |--etc. ```...

Allows the generation of files with a ‘use strict’. This option is configurable with the boolean property, ‘jsstrict’ in yo-rc.json. During the initial setup, the user is prompted whether or...

I really like this generator, but I noticed the lack of a custom dist folder in the Gruntfile.js Thanks

Much have happened over the years and I've found some interesting thoughts that are not yet implemented in any mainstream build systems. [Combining directives with controllerAs and isolated scope](http://teropa.info/blog/2014/10/24/how-ive-improved-my-angular-apps-by-banning-ng-controller.html) The...

It will appear in the markup as `ng-controller="Foo"` so it's a violation of [DRY](https://en.wikipedia.org/wiki/Don%27t_repeat_yourself) to generate `ng-controller="FooCtrl"`. The reasoning behind this preference is pretty well covered in [this blog post](http://www.johnpapa.net/angular-app-structuring-guidelines/),...

I noticed a bug when generating a submodule. I was trying to generate it into the folder "src/app/home/" and it was modifying any file in "src/app/" which it could find....

Would you be interested in a pull request that added Coffeescript templates, and install generator options to choose them?

It's not easy to debug unit tests when karm run all of them. In order to use the createFolderGlobs function and avoid karma.conf.js, I had created a new task 'test_debug'...