├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── README.md ├── generators └── app │ ├── index.js │ └── templates │ ├── _coffeelint.json │ ├── _gulpfile.js │ ├── _package.json │ ├── _tslint.json │ ├── editorconfig │ ├── gitignore │ ├── gulp │ ├── config.js │ ├── index.js │ └── tasks │ │ ├── assets.js │ │ ├── browserify.js │ │ ├── clean.js │ │ ├── default.js │ │ ├── images.js │ │ ├── index.js │ │ ├── lint.js │ │ ├── minify.js │ │ ├── serve.js │ │ ├── styles.js │ │ ├── templates.js │ │ ├── watch.js │ │ └── watchify.js │ ├── jshintrc │ └── src │ ├── assets │ └── images │ │ └── angulpify.png │ ├── modules │ ├── coffeescript │ │ ├── app │ │ │ ├── foo │ │ │ │ ├── fooController.coffee │ │ │ │ └── index.coffee │ │ │ └── index.coffee │ │ ├── common │ │ │ ├── directives │ │ │ │ ├── fooDirective.coffee │ │ │ │ └── index.coffee │ │ │ ├── filters │ │ │ │ ├── fooFilter.coffee │ │ │ │ └── index.coffee │ │ │ ├── index.coffee │ │ │ └── services │ │ │ │ ├── fooService.coffee │ │ │ │ └── index.coffee │ │ └── index.coffee │ └── javascript │ │ ├── app │ │ ├── foo │ │ │ ├── fooController.js │ │ │ └── index.js │ │ └── index.js │ │ ├── common │ │ ├── directives │ │ │ ├── fooDirective.js │ │ │ └── index.js │ │ ├── filters │ │ │ ├── fooFilter.js │ │ │ └── index.js │ │ ├── index.js │ │ └── services │ │ │ ├── fooService.js │ │ │ └── index.js │ │ └── index.js │ ├── styles │ ├── css │ │ └── app.css │ ├── less │ │ ├── app.less │ │ ├── imports.less │ │ └── variables.less │ └── sass │ │ ├── _imports.scss │ │ ├── _variables.scss │ │ └── app.scss │ └── templates │ ├── html │ ├── index.html │ └── layout.html │ └── jade │ ├── index.jade │ └── layout.jade ├── package.json └── test ├── coffeescript.js ├── jade.js ├── less.js ├── sass.js ├── test.js └── typescript.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules/ 3 | tmp/ 4 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/README.md -------------------------------------------------------------------------------- /generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/index.js -------------------------------------------------------------------------------- /generators/app/templates/_coffeelint.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /generators/app/templates/_gulpfile.js: -------------------------------------------------------------------------------- 1 | require('./gulp'); -------------------------------------------------------------------------------- /generators/app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/_package.json -------------------------------------------------------------------------------- /generators/app/templates/_tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /generators/app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/editorconfig -------------------------------------------------------------------------------- /generators/app/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gitignore -------------------------------------------------------------------------------- /generators/app/templates/gulp/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/config.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/index.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/assets.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/browserify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/browserify.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/clean.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/default.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/images.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/images.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/index.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/lint.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/minify.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/serve.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/styles.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/templates.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/watch.js -------------------------------------------------------------------------------- /generators/app/templates/gulp/tasks/watchify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/gulp/tasks/watchify.js -------------------------------------------------------------------------------- /generators/app/templates/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/jshintrc -------------------------------------------------------------------------------- /generators/app/templates/src/assets/images/angulpify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/assets/images/angulpify.png -------------------------------------------------------------------------------- /generators/app/templates/src/modules/coffeescript/app/foo/fooController.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/coffeescript/app/foo/fooController.coffee -------------------------------------------------------------------------------- /generators/app/templates/src/modules/coffeescript/app/foo/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/coffeescript/app/foo/index.coffee -------------------------------------------------------------------------------- /generators/app/templates/src/modules/coffeescript/app/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/coffeescript/app/index.coffee -------------------------------------------------------------------------------- /generators/app/templates/src/modules/coffeescript/common/directives/fooDirective.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/coffeescript/common/directives/fooDirective.coffee -------------------------------------------------------------------------------- /generators/app/templates/src/modules/coffeescript/common/directives/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/coffeescript/common/directives/index.coffee -------------------------------------------------------------------------------- /generators/app/templates/src/modules/coffeescript/common/filters/fooFilter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/coffeescript/common/filters/fooFilter.coffee -------------------------------------------------------------------------------- /generators/app/templates/src/modules/coffeescript/common/filters/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/coffeescript/common/filters/index.coffee -------------------------------------------------------------------------------- /generators/app/templates/src/modules/coffeescript/common/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/coffeescript/common/index.coffee -------------------------------------------------------------------------------- /generators/app/templates/src/modules/coffeescript/common/services/fooService.coffee: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | ### @ngInject ### 4 | module.exports = -> 5 | {} 6 | -------------------------------------------------------------------------------- /generators/app/templates/src/modules/coffeescript/common/services/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/coffeescript/common/services/index.coffee -------------------------------------------------------------------------------- /generators/app/templates/src/modules/coffeescript/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/coffeescript/index.coffee -------------------------------------------------------------------------------- /generators/app/templates/src/modules/javascript/app/foo/fooController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/javascript/app/foo/fooController.js -------------------------------------------------------------------------------- /generators/app/templates/src/modules/javascript/app/foo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/javascript/app/foo/index.js -------------------------------------------------------------------------------- /generators/app/templates/src/modules/javascript/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/javascript/app/index.js -------------------------------------------------------------------------------- /generators/app/templates/src/modules/javascript/common/directives/fooDirective.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/javascript/common/directives/fooDirective.js -------------------------------------------------------------------------------- /generators/app/templates/src/modules/javascript/common/directives/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/javascript/common/directives/index.js -------------------------------------------------------------------------------- /generators/app/templates/src/modules/javascript/common/filters/fooFilter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/javascript/common/filters/fooFilter.js -------------------------------------------------------------------------------- /generators/app/templates/src/modules/javascript/common/filters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/javascript/common/filters/index.js -------------------------------------------------------------------------------- /generators/app/templates/src/modules/javascript/common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/javascript/common/index.js -------------------------------------------------------------------------------- /generators/app/templates/src/modules/javascript/common/services/fooService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/javascript/common/services/fooService.js -------------------------------------------------------------------------------- /generators/app/templates/src/modules/javascript/common/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/javascript/common/services/index.js -------------------------------------------------------------------------------- /generators/app/templates/src/modules/javascript/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/modules/javascript/index.js -------------------------------------------------------------------------------- /generators/app/templates/src/styles/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/styles/css/app.css -------------------------------------------------------------------------------- /generators/app/templates/src/styles/less/app.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/styles/less/app.less -------------------------------------------------------------------------------- /generators/app/templates/src/styles/less/imports.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/styles/less/imports.less -------------------------------------------------------------------------------- /generators/app/templates/src/styles/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/styles/less/variables.less -------------------------------------------------------------------------------- /generators/app/templates/src/styles/sass/_imports.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/styles/sass/_imports.scss -------------------------------------------------------------------------------- /generators/app/templates/src/styles/sass/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/styles/sass/_variables.scss -------------------------------------------------------------------------------- /generators/app/templates/src/styles/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/styles/sass/app.scss -------------------------------------------------------------------------------- /generators/app/templates/src/templates/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/templates/html/index.html -------------------------------------------------------------------------------- /generators/app/templates/src/templates/html/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/templates/html/layout.html -------------------------------------------------------------------------------- /generators/app/templates/src/templates/jade/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/templates/jade/index.jade -------------------------------------------------------------------------------- /generators/app/templates/src/templates/jade/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/generators/app/templates/src/templates/jade/layout.jade -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/package.json -------------------------------------------------------------------------------- /test/coffeescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/test/coffeescript.js -------------------------------------------------------------------------------- /test/jade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/test/jade.js -------------------------------------------------------------------------------- /test/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/test/less.js -------------------------------------------------------------------------------- /test/sass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/test/sass.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/test/test.js -------------------------------------------------------------------------------- /test/typescript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jgoux/generator-angulpify/HEAD/test/typescript.js --------------------------------------------------------------------------------