├── .editorconfig ├── .gitignore ├── .gitmodules ├── .jshintrc ├── .travis.yml ├── generators └── app │ └── index.js ├── license ├── package.json ├── readme.md └── test └── test-app.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alferov/generator-angular-gulp-browserify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alferov/generator-angular-gulp-browserify/HEAD/.gitmodules -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alferov/generator-angular-gulp-browserify/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alferov/generator-angular-gulp-browserify/HEAD/.travis.yml -------------------------------------------------------------------------------- /generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alferov/generator-angular-gulp-browserify/HEAD/generators/app/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alferov/generator-angular-gulp-browserify/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alferov/generator-angular-gulp-browserify/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alferov/generator-angular-gulp-browserify/HEAD/readme.md -------------------------------------------------------------------------------- /test/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alferov/generator-angular-gulp-browserify/HEAD/test/test-app.js --------------------------------------------------------------------------------