├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jshintrc ├── .travis.yml ├── .yo-rc.json ├── README.md ├── app ├── index.js └── templates │ ├── LICENSE │ ├── README.md │ ├── _bower.json │ ├── _package.json │ ├── bowerrc │ ├── editorconfig │ ├── gitignore │ ├── gulpfile.js │ ├── jshintrc │ ├── karma-dist-concatenated.conf.js │ ├── karma-dist-minified.conf.js │ ├── karma-src.conf.js │ ├── src │ └── library │ │ └── library.module.js │ ├── test │ └── unit │ │ └── library │ │ └── librarySpec.js │ └── travis.yml ├── package.json └── test └── test-app.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/index.js -------------------------------------------------------------------------------- /app/templates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/LICENSE -------------------------------------------------------------------------------- /app/templates/README.md: -------------------------------------------------------------------------------- 1 | # <%= config.libraryName.original %> 2 | 3 | -------------------------------------------------------------------------------- /app/templates/_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/_bower.json -------------------------------------------------------------------------------- /app/templates/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/_package.json -------------------------------------------------------------------------------- /app/templates/bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower" 3 | } -------------------------------------------------------------------------------- /app/templates/editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/editorconfig -------------------------------------------------------------------------------- /app/templates/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/gitignore -------------------------------------------------------------------------------- /app/templates/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/gulpfile.js -------------------------------------------------------------------------------- /app/templates/jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/jshintrc -------------------------------------------------------------------------------- /app/templates/karma-dist-concatenated.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/karma-dist-concatenated.conf.js -------------------------------------------------------------------------------- /app/templates/karma-dist-minified.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/karma-dist-minified.conf.js -------------------------------------------------------------------------------- /app/templates/karma-src.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/karma-src.conf.js -------------------------------------------------------------------------------- /app/templates/src/library/library.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/src/library/library.module.js -------------------------------------------------------------------------------- /app/templates/test/unit/library/librarySpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/test/unit/library/librarySpec.js -------------------------------------------------------------------------------- /app/templates/travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/app/templates/travis.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/package.json -------------------------------------------------------------------------------- /test/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jvandemo/generator-angularjs-library/HEAD/test/test-app.js --------------------------------------------------------------------------------