generator-angular
generator-angular copied to clipboard
Yeoman generator for AngularJS
Hello, I'm new to yeoman , I installed everything from scratch. When I try to generate angular project with "yo angular" I get the following error: ``` (!) #_ is...
I'd suggest adding something like `templates/common/e2e.js` that would be used in `view/index.js` that way you'll get it for new routes as well. ``` javascript describe(' page', function () { beforeEach(function...
And make use of the new mem-fs features and fix deprecations. https://github.com/yeoman/generator/releases
Should all filenames be all lower cased? This is one of the last remaining naming issues I think. Lower casing all file names would solve a few problems.
To reproduce: ``` $ yo angular --coffee ``` ``` $ grunt test ``` ``` Warning: Task "karma" not found. Use --force to continue. Aborted due to warnings. Execution Time (2014-07-23...
Allow the user to pass in a path to where templates they would like to use are located
I was looking into how to add support for the 3rd party `ui-router` lib... so I started reading the code. It seems we are using regular expressions and doing things...
There are few generator options that rather should remain unchainged during application live: 1. appPath 2. coffee 3. app-suffix point 3 currently is unsaved and it's address in #975. The...
If my current directory name is delimited by dashes/underscores/spaces AND one of the words in the name is a single letter word (like 'a' or 'i') the generated angular app...
I'm using html5mode and server rewrites to get rid of the hashbang, leaving me with urls like `http://site.local/foo/bar` instead of `http://site.local/#!/foo/bar`. This works on page refresh, even for deep links....