├── .editorconfig ├── .gitattributes ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .travis.yml ├── .yo-rc.json ├── README.md ├── app └── index.js ├── constant └── index.js ├── controller └── index.js ├── directive └── index.js ├── factory └── index.js ├── feature └── index.js ├── filter └── index.js ├── package.json ├── paths.js ├── templates ├── components │ ├── _constant.js │ ├── _controller.js │ ├── _directive.js │ ├── _factory.js │ ├── _featureModule.js │ ├── _filter.js │ ├── _value.js │ └── _view.html ├── root │ ├── _.bowerrc │ ├── _.editorconfig │ ├── _.gitignore │ ├── _.jscsrc │ ├── _.jshintrc │ ├── _bower.json │ ├── _configLoader.js │ ├── _gruntfile.js │ ├── _index.html │ ├── _package.json │ ├── app │ │ ├── fonts │ │ │ └── Kelvetica Nobis.otf │ │ ├── images │ │ │ └── welcome │ │ │ │ └── super-logo.jpg │ │ ├── src │ │ │ ├── app.module.js │ │ │ ├── common │ │ │ │ └── common.module.js │ │ │ ├── core │ │ │ │ ├── core.module.js │ │ │ │ ├── httpStatus.constant.js │ │ │ │ ├── restangular.config.js │ │ │ │ └── router.config.js │ │ │ └── welcome │ │ │ │ ├── welcome.controller.js │ │ │ │ ├── welcome.html │ │ │ │ └── welcome.module.js │ │ └── styles │ │ │ ├── css │ │ │ └── main.css │ │ │ ├── main.scss │ │ │ └── partials │ │ │ ├── _skin.scss │ │ │ └── _welcome.scss │ ├── tasks │ │ ├── _bump.js │ │ ├── _clean.js │ │ ├── _compass.js │ │ ├── _concurrent.js │ │ ├── _connect.js │ │ ├── _copy.js │ │ ├── _html2js.js │ │ ├── _jshint.js │ │ ├── _karma.js │ │ ├── _ngAnnotate.js │ │ ├── _ngdocs.js │ │ ├── _replace.js │ │ ├── _usemin.js │ │ ├── _useminPrepare.js │ │ ├── _watch.js │ │ └── _wiredep.js │ └── tests │ │ └── welcome │ │ └── welcome.controller.js └── tests │ ├── _controller.js │ ├── _factory.js │ └── _filter.js ├── test └── test-app.js ├── utils.js ├── value └── index.js └── view └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules/ 3 | .settings/ 4 | -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/.travis.yml -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/README.md -------------------------------------------------------------------------------- /app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/app/index.js -------------------------------------------------------------------------------- /constant/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/constant/index.js -------------------------------------------------------------------------------- /controller/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/controller/index.js -------------------------------------------------------------------------------- /directive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/directive/index.js -------------------------------------------------------------------------------- /factory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/factory/index.js -------------------------------------------------------------------------------- /feature/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/feature/index.js -------------------------------------------------------------------------------- /filter/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/filter/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/package.json -------------------------------------------------------------------------------- /paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/paths.js -------------------------------------------------------------------------------- /templates/components/_constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/components/_constant.js -------------------------------------------------------------------------------- /templates/components/_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/components/_controller.js -------------------------------------------------------------------------------- /templates/components/_directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/components/_directive.js -------------------------------------------------------------------------------- /templates/components/_factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/components/_factory.js -------------------------------------------------------------------------------- /templates/components/_featureModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/components/_featureModule.js -------------------------------------------------------------------------------- /templates/components/_filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/components/_filter.js -------------------------------------------------------------------------------- /templates/components/_value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/components/_value.js -------------------------------------------------------------------------------- /templates/components/_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/components/_view.html -------------------------------------------------------------------------------- /templates/root/_.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory" : "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /templates/root/_.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/_.editorconfig -------------------------------------------------------------------------------- /templates/root/_.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/_.gitignore -------------------------------------------------------------------------------- /templates/root/_.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/_.jscsrc -------------------------------------------------------------------------------- /templates/root/_.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/_.jshintrc -------------------------------------------------------------------------------- /templates/root/_bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/_bower.json -------------------------------------------------------------------------------- /templates/root/_configLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/_configLoader.js -------------------------------------------------------------------------------- /templates/root/_gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/_gruntfile.js -------------------------------------------------------------------------------- /templates/root/_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/_index.html -------------------------------------------------------------------------------- /templates/root/_package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/_package.json -------------------------------------------------------------------------------- /templates/root/app/fonts/Kelvetica Nobis.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/fonts/Kelvetica Nobis.otf -------------------------------------------------------------------------------- /templates/root/app/images/welcome/super-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/images/welcome/super-logo.jpg -------------------------------------------------------------------------------- /templates/root/app/src/app.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/src/app.module.js -------------------------------------------------------------------------------- /templates/root/app/src/common/common.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/src/common/common.module.js -------------------------------------------------------------------------------- /templates/root/app/src/core/core.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/src/core/core.module.js -------------------------------------------------------------------------------- /templates/root/app/src/core/httpStatus.constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/src/core/httpStatus.constant.js -------------------------------------------------------------------------------- /templates/root/app/src/core/restangular.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/src/core/restangular.config.js -------------------------------------------------------------------------------- /templates/root/app/src/core/router.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/src/core/router.config.js -------------------------------------------------------------------------------- /templates/root/app/src/welcome/welcome.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/src/welcome/welcome.controller.js -------------------------------------------------------------------------------- /templates/root/app/src/welcome/welcome.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/src/welcome/welcome.html -------------------------------------------------------------------------------- /templates/root/app/src/welcome/welcome.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/src/welcome/welcome.module.js -------------------------------------------------------------------------------- /templates/root/app/styles/css/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/root/app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/styles/main.scss -------------------------------------------------------------------------------- /templates/root/app/styles/partials/_skin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/styles/partials/_skin.scss -------------------------------------------------------------------------------- /templates/root/app/styles/partials/_welcome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/app/styles/partials/_welcome.scss -------------------------------------------------------------------------------- /templates/root/tasks/_bump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_bump.js -------------------------------------------------------------------------------- /templates/root/tasks/_clean.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | dist : ['.tmp', 'dist'] 3 | } 4 | -------------------------------------------------------------------------------- /templates/root/tasks/_compass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_compass.js -------------------------------------------------------------------------------- /templates/root/tasks/_concurrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_concurrent.js -------------------------------------------------------------------------------- /templates/root/tasks/_connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_connect.js -------------------------------------------------------------------------------- /templates/root/tasks/_copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_copy.js -------------------------------------------------------------------------------- /templates/root/tasks/_html2js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_html2js.js -------------------------------------------------------------------------------- /templates/root/tasks/_jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_jshint.js -------------------------------------------------------------------------------- /templates/root/tasks/_karma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_karma.js -------------------------------------------------------------------------------- /templates/root/tasks/_ngAnnotate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_ngAnnotate.js -------------------------------------------------------------------------------- /templates/root/tasks/_ngdocs.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | all: ['app/src/**/*.js'] 3 | }; 4 | -------------------------------------------------------------------------------- /templates/root/tasks/_replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_replace.js -------------------------------------------------------------------------------- /templates/root/tasks/_usemin.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | html: 'dist/index.html' 3 | } 4 | -------------------------------------------------------------------------------- /templates/root/tasks/_useminPrepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_useminPrepare.js -------------------------------------------------------------------------------- /templates/root/tasks/_watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_watch.js -------------------------------------------------------------------------------- /templates/root/tasks/_wiredep.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tasks/_wiredep.js -------------------------------------------------------------------------------- /templates/root/tests/welcome/welcome.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/root/tests/welcome/welcome.controller.js -------------------------------------------------------------------------------- /templates/tests/_controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/tests/_controller.js -------------------------------------------------------------------------------- /templates/tests/_factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/tests/_factory.js -------------------------------------------------------------------------------- /templates/tests/_filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/templates/tests/_filter.js -------------------------------------------------------------------------------- /test/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/test/test-app.js -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/utils.js -------------------------------------------------------------------------------- /value/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/value/index.js -------------------------------------------------------------------------------- /view/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jshipster/generator-ng-super/HEAD/view/index.js --------------------------------------------------------------------------------