├── .gitignore ├── README.md ├── package.json ├── slushfile.js ├── templates ├── README.md ├── _bowerrc ├── _csslintrc ├── _editorconfig ├── _gitignore ├── _jshintrc ├── bower.json ├── gulpfile.js ├── karma.conf.js ├── package.json └── src │ └── app │ ├── app.coffee │ ├── app.css │ ├── app.js │ ├── assets │ └── _gitkeep │ ├── index.html │ ├── styles │ └── _base.css │ └── todo │ ├── todo-controller.coffee │ ├── todo-controller.js │ ├── todo-controller_test.coffee │ ├── todo-controller_test.js │ ├── todo.coffee │ ├── todo.css │ ├── todo.html │ └── todo.js └── test └── slush-angular_test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .tmp 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/package.json -------------------------------------------------------------------------------- /slushfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/slushfile.js -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/_bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /templates/_csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/_csslintrc -------------------------------------------------------------------------------- /templates/_editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/_editorconfig -------------------------------------------------------------------------------- /templates/_gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bower_components/ 3 | .tmp/ 4 | -------------------------------------------------------------------------------- /templates/_jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/_jshintrc -------------------------------------------------------------------------------- /templates/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/bower.json -------------------------------------------------------------------------------- /templates/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/gulpfile.js -------------------------------------------------------------------------------- /templates/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/karma.conf.js -------------------------------------------------------------------------------- /templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/package.json -------------------------------------------------------------------------------- /templates/src/app/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/src/app/app.coffee -------------------------------------------------------------------------------- /templates/src/app/app.css: -------------------------------------------------------------------------------- 1 | @import "styles/_base"; 2 | -------------------------------------------------------------------------------- /templates/src/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/src/app/app.js -------------------------------------------------------------------------------- /templates/src/app/assets/_gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/src/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/src/app/index.html -------------------------------------------------------------------------------- /templates/src/app/styles/_base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/src/app/styles/_base.css -------------------------------------------------------------------------------- /templates/src/app/todo/todo-controller.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/src/app/todo/todo-controller.coffee -------------------------------------------------------------------------------- /templates/src/app/todo/todo-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/src/app/todo/todo-controller.js -------------------------------------------------------------------------------- /templates/src/app/todo/todo-controller_test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/src/app/todo/todo-controller_test.coffee -------------------------------------------------------------------------------- /templates/src/app/todo/todo-controller_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/src/app/todo/todo-controller_test.js -------------------------------------------------------------------------------- /templates/src/app/todo/todo.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/src/app/todo/todo.coffee -------------------------------------------------------------------------------- /templates/src/app/todo/todo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/src/app/todo/todo.css -------------------------------------------------------------------------------- /templates/src/app/todo/todo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/src/app/todo/todo.html -------------------------------------------------------------------------------- /templates/src/app/todo/todo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/templates/src/app/todo/todo.js -------------------------------------------------------------------------------- /test/slush-angular_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slushjs/slush-angular/HEAD/test/slush-angular_test.js --------------------------------------------------------------------------------