├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CUSTOMIZING.md ├── LICENSE ├── README.md ├── UPGRADING.md ├── app ├── index.js └── templates │ └── skeleton │ ├── .bowerrc │ ├── .editorconfig │ ├── .gitignore │ ├── .jshintrc │ ├── Gruntfile.js │ ├── app.js │ ├── app.less │ ├── bower.json │ ├── gulpfile.js │ ├── index.html │ └── package.json ├── directive ├── index.js └── templates │ ├── complex │ ├── directive-spec.js │ ├── directive.html │ ├── directive.js │ └── directive.less │ └── simple │ ├── directive-spec.js │ └── directive.js ├── filter ├── index.js └── templates │ ├── filter-spec.js │ └── filter.js ├── modal ├── index.js └── templates │ ├── modal-spec.js │ ├── modal.html │ ├── modal.js │ └── modal.less ├── module ├── index.js └── templates │ ├── module.js │ └── module.less ├── package.json ├── partial ├── index.js └── templates │ ├── partial-spec.js │ ├── partial.html │ ├── partial.js │ └── partial.less ├── service ├── index.js └── templates │ ├── service-spec.js │ └── service.js ├── test ├── test-creation.js └── test-load.js └── utils.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | temp/ 3 | .DS_Store -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/.travis.yml -------------------------------------------------------------------------------- /CUSTOMIZING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/CUSTOMIZING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/skeleton/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /app/templates/skeleton/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/app/templates/skeleton/.editorconfig -------------------------------------------------------------------------------- /app/templates/skeleton/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/app/templates/skeleton/.gitignore -------------------------------------------------------------------------------- /app/templates/skeleton/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/app/templates/skeleton/.jshintrc -------------------------------------------------------------------------------- /app/templates/skeleton/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/app/templates/skeleton/Gruntfile.js -------------------------------------------------------------------------------- /app/templates/skeleton/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/app/templates/skeleton/app.js -------------------------------------------------------------------------------- /app/templates/skeleton/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/app/templates/skeleton/app.less -------------------------------------------------------------------------------- /app/templates/skeleton/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/app/templates/skeleton/bower.json -------------------------------------------------------------------------------- /app/templates/skeleton/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/app/templates/skeleton/gulpfile.js -------------------------------------------------------------------------------- /app/templates/skeleton/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/app/templates/skeleton/index.html -------------------------------------------------------------------------------- /app/templates/skeleton/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/app/templates/skeleton/package.json -------------------------------------------------------------------------------- /directive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/directive/index.js -------------------------------------------------------------------------------- /directive/templates/complex/directive-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/directive/templates/complex/directive-spec.js -------------------------------------------------------------------------------- /directive/templates/complex/directive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/directive/templates/complex/directive.html -------------------------------------------------------------------------------- /directive/templates/complex/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/directive/templates/complex/directive.js -------------------------------------------------------------------------------- /directive/templates/complex/directive.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /directive/templates/simple/directive-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/directive/templates/simple/directive-spec.js -------------------------------------------------------------------------------- /directive/templates/simple/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/directive/templates/simple/directive.js -------------------------------------------------------------------------------- /filter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/filter/index.js -------------------------------------------------------------------------------- /filter/templates/filter-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/filter/templates/filter-spec.js -------------------------------------------------------------------------------- /filter/templates/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/filter/templates/filter.js -------------------------------------------------------------------------------- /modal/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/modal/index.js -------------------------------------------------------------------------------- /modal/templates/modal-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/modal/templates/modal-spec.js -------------------------------------------------------------------------------- /modal/templates/modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/modal/templates/modal.html -------------------------------------------------------------------------------- /modal/templates/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/modal/templates/modal.js -------------------------------------------------------------------------------- /modal/templates/modal.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/module/index.js -------------------------------------------------------------------------------- /module/templates/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/module/templates/module.js -------------------------------------------------------------------------------- /module/templates/module.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/module/templates/module.less -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/package.json -------------------------------------------------------------------------------- /partial/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/partial/index.js -------------------------------------------------------------------------------- /partial/templates/partial-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/partial/templates/partial-spec.js -------------------------------------------------------------------------------- /partial/templates/partial.html: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 |
5 | -------------------------------------------------------------------------------- /partial/templates/partial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/partial/templates/partial.js -------------------------------------------------------------------------------- /partial/templates/partial.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/service/index.js -------------------------------------------------------------------------------- /service/templates/service-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/service/templates/service-spec.js -------------------------------------------------------------------------------- /service/templates/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/service/templates/service.js -------------------------------------------------------------------------------- /test/test-creation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/test/test-creation.js -------------------------------------------------------------------------------- /test/test-load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/test/test-load.js -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgross/generator-cg-angular/HEAD/utils.js --------------------------------------------------------------------------------