├── .editorconfig ├── .gitattributes ├── .github └── issue_template.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── generators ├── app │ ├── index.js │ └── templates │ │ └── src │ │ ├── index.html │ │ ├── router │ │ ├── routes.babel │ │ ├── routes.js │ │ └── routes.ts │ │ └── uirouter │ │ ├── routes.babel │ │ ├── routes.js │ │ └── routes.ts ├── component │ ├── index.js │ └── templates │ │ └── src │ │ └── app │ │ ├── component.babel │ │ ├── component.html │ │ ├── component.js │ │ ├── component.spec.babel │ │ ├── component.spec.js │ │ ├── component.spec.ts │ │ └── component.ts ├── directive │ ├── index.js │ └── templates │ │ └── src │ │ └── app │ │ ├── directive.babel │ │ ├── directive.js │ │ ├── directive.spec.babel │ │ ├── directive.spec.js │ │ ├── directive.spec.ts │ │ └── directive.ts ├── hello │ ├── index.js │ └── templates │ │ └── src │ │ ├── app │ │ ├── hello.babel │ │ ├── hello.html │ │ ├── hello.js │ │ ├── hello.spec.babel │ │ ├── hello.spec.js │ │ ├── hello.spec.ts │ │ ├── hello.ts │ │ ├── index.babel │ │ ├── index.js │ │ └── index.ts │ │ ├── index.babel │ │ ├── index.css │ │ ├── index.js │ │ ├── index.less │ │ ├── index.scss │ │ ├── index.styl │ │ └── index.ts ├── pipe │ ├── index.js │ └── templates │ │ └── src │ │ └── app │ │ ├── pipe.babel │ │ ├── pipe.js │ │ ├── pipe.spec.babel │ │ ├── pipe.spec.js │ │ ├── pipe.spec.ts │ │ └── pipe.ts ├── service │ ├── index.js │ └── templates │ │ └── src │ │ └── app │ │ ├── service.babel │ │ ├── service.js │ │ ├── service.spec.babel │ │ ├── service.spec.js │ │ ├── service.spec.ts │ │ └── service.ts ├── techs │ ├── index.js │ └── templates │ │ └── src │ │ ├── app │ │ ├── footer.babel │ │ ├── footer.html │ │ ├── footer.js │ │ ├── footer.spec.babel │ │ ├── footer.spec.js │ │ ├── footer.spec.ts │ │ ├── footer.ts │ │ ├── header.babel │ │ ├── header.html │ │ ├── header.js │ │ ├── header.spec.babel │ │ ├── header.spec.js │ │ ├── header.spec.ts │ │ ├── header.ts │ │ ├── index.babel │ │ ├── index.js │ │ ├── index.ts │ │ ├── main.babel │ │ ├── main.html │ │ ├── main.js │ │ ├── main.spec.babel │ │ ├── main.spec.js │ │ ├── main.spec.ts │ │ ├── main.ts │ │ ├── techs │ │ │ ├── index.babel │ │ │ ├── index.js │ │ │ ├── index.ts │ │ │ ├── tech.babel │ │ │ ├── tech.html │ │ │ ├── tech.js │ │ │ ├── tech.spec.babel │ │ │ ├── tech.spec.js │ │ │ ├── tech.spec.ts │ │ │ ├── tech.ts │ │ │ ├── techs.babel │ │ │ ├── techs.html │ │ │ ├── techs.js │ │ │ ├── techs.spec.babel │ │ │ ├── techs.spec.js │ │ │ ├── techs.spec.ts │ │ │ └── techs.ts │ │ ├── title.babel │ │ ├── title.html │ │ ├── title.js │ │ ├── title.spec.babel │ │ ├── title.spec.js │ │ ├── title.spec.ts │ │ └── title.ts │ │ ├── index.babel │ │ ├── index.css │ │ ├── index.js │ │ ├── index.less │ │ ├── index.scss │ │ ├── index.styl │ │ └── index.ts └── todoMVC │ ├── index.js │ └── templates │ └── src │ ├── app │ ├── actions │ │ ├── index.babel │ │ ├── index.js │ │ └── index.ts │ ├── components │ │ ├── Footer.babel │ │ ├── Footer.html │ │ ├── Footer.js │ │ ├── Footer.spec.babel │ │ ├── Footer.spec.js │ │ ├── Footer.spec.ts │ │ ├── Footer.ts │ │ ├── Header.babel │ │ ├── Header.html │ │ ├── Header.js │ │ ├── Header.spec.babel │ │ ├── Header.spec.js │ │ ├── Header.spec.ts │ │ ├── Header.ts │ │ ├── MainSection.babel │ │ ├── MainSection.html │ │ ├── MainSection.js │ │ ├── MainSection.spec.babel │ │ ├── MainSection.spec.js │ │ ├── MainSection.spec.ts │ │ ├── MainSection.ts │ │ ├── TodoItem.babel │ │ ├── TodoItem.html │ │ ├── TodoItem.js │ │ ├── TodoItem.spec.babel │ │ ├── TodoItem.spec.js │ │ ├── TodoItem.spec.ts │ │ ├── TodoItem.ts │ │ ├── TodoTextInput.babel │ │ ├── TodoTextInput.html │ │ ├── TodoTextInput.js │ │ ├── TodoTextInput.spec.babel │ │ ├── TodoTextInput.spec.js │ │ ├── TodoTextInput.spec.ts │ │ └── TodoTextInput.ts │ ├── constants │ │ ├── ActionTypes.babel │ │ ├── ActionTypes.js │ │ ├── ActionTypes.ts │ │ ├── TodoFilters.babel │ │ ├── TodoFilters.js │ │ └── TodoFilters.ts │ ├── containers │ │ ├── App.babel │ │ ├── App.html │ │ ├── App.js │ │ └── App.ts │ ├── index.babel │ ├── index.js │ ├── index.ts │ └── reducers │ │ ├── index.babel │ │ ├── index.js │ │ ├── index.ts │ │ ├── todos.babel │ │ ├── todos.js │ │ ├── todos.spec.babel │ │ ├── todos.spec.js │ │ ├── todos.spec.ts │ │ └── todos.ts │ ├── index.babel │ ├── index.css │ ├── index.html │ ├── index.js │ ├── index.less │ ├── index.scss │ ├── index.styl │ └── index.ts ├── gulpfile.js ├── index.js ├── package.json └── test ├── app ├── index.composing.js ├── index.configuring.js ├── index.fountain.js ├── index.sample.js └── index.writing.js ├── component └── index.js ├── directive └── index.js ├── hello └── index.js ├── pipe └── index.js ├── service └── index.js ├── techs └── index.js └── todoMVC └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | .nyc_output 4 | 5 | #IDE's 6 | .idea/ 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/README.md -------------------------------------------------------------------------------- /generators/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/app/index.js -------------------------------------------------------------------------------- /generators/app/templates/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/app/templates/src/index.html -------------------------------------------------------------------------------- /generators/app/templates/src/router/routes.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/app/templates/src/router/routes.babel -------------------------------------------------------------------------------- /generators/app/templates/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/app/templates/src/router/routes.js -------------------------------------------------------------------------------- /generators/app/templates/src/router/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/app/templates/src/router/routes.ts -------------------------------------------------------------------------------- /generators/app/templates/src/uirouter/routes.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/app/templates/src/uirouter/routes.babel -------------------------------------------------------------------------------- /generators/app/templates/src/uirouter/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/app/templates/src/uirouter/routes.js -------------------------------------------------------------------------------- /generators/app/templates/src/uirouter/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/app/templates/src/uirouter/routes.ts -------------------------------------------------------------------------------- /generators/component/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/component/index.js -------------------------------------------------------------------------------- /generators/component/templates/src/app/component.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/component/templates/src/app/component.babel -------------------------------------------------------------------------------- /generators/component/templates/src/app/component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/component/templates/src/app/component.html -------------------------------------------------------------------------------- /generators/component/templates/src/app/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/component/templates/src/app/component.js -------------------------------------------------------------------------------- /generators/component/templates/src/app/component.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/component/templates/src/app/component.spec.babel -------------------------------------------------------------------------------- /generators/component/templates/src/app/component.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/component/templates/src/app/component.spec.js -------------------------------------------------------------------------------- /generators/component/templates/src/app/component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/component/templates/src/app/component.spec.ts -------------------------------------------------------------------------------- /generators/component/templates/src/app/component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/component/templates/src/app/component.ts -------------------------------------------------------------------------------- /generators/directive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/directive/index.js -------------------------------------------------------------------------------- /generators/directive/templates/src/app/directive.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/directive/templates/src/app/directive.babel -------------------------------------------------------------------------------- /generators/directive/templates/src/app/directive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/directive/templates/src/app/directive.js -------------------------------------------------------------------------------- /generators/directive/templates/src/app/directive.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/directive/templates/src/app/directive.spec.babel -------------------------------------------------------------------------------- /generators/directive/templates/src/app/directive.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/directive/templates/src/app/directive.spec.js -------------------------------------------------------------------------------- /generators/directive/templates/src/app/directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/directive/templates/src/app/directive.spec.ts -------------------------------------------------------------------------------- /generators/directive/templates/src/app/directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/directive/templates/src/app/directive.ts -------------------------------------------------------------------------------- /generators/hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/index.js -------------------------------------------------------------------------------- /generators/hello/templates/src/app/hello.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/templates/src/app/hello.babel -------------------------------------------------------------------------------- /generators/hello/templates/src/app/hello.html: -------------------------------------------------------------------------------- 1 |

{{ hello }}

-------------------------------------------------------------------------------- /generators/hello/templates/src/app/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/templates/src/app/hello.js -------------------------------------------------------------------------------- /generators/hello/templates/src/app/hello.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/templates/src/app/hello.spec.babel -------------------------------------------------------------------------------- /generators/hello/templates/src/app/hello.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/templates/src/app/hello.spec.js -------------------------------------------------------------------------------- /generators/hello/templates/src/app/hello.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/templates/src/app/hello.spec.ts -------------------------------------------------------------------------------- /generators/hello/templates/src/app/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/templates/src/app/hello.ts -------------------------------------------------------------------------------- /generators/hello/templates/src/app/index.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/templates/src/app/index.babel -------------------------------------------------------------------------------- /generators/hello/templates/src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/templates/src/app/index.js -------------------------------------------------------------------------------- /generators/hello/templates/src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/templates/src/app/index.ts -------------------------------------------------------------------------------- /generators/hello/templates/src/index.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/templates/src/index.babel -------------------------------------------------------------------------------- /generators/hello/templates/src/index.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightgrey; 3 | } 4 | -------------------------------------------------------------------------------- /generators/hello/templates/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/templates/src/index.js -------------------------------------------------------------------------------- /generators/hello/templates/src/index.less: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightgrey; 3 | } 4 | -------------------------------------------------------------------------------- /generators/hello/templates/src/index.scss: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightgrey; 3 | } 4 | -------------------------------------------------------------------------------- /generators/hello/templates/src/index.styl: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: lightgrey; 3 | } 4 | -------------------------------------------------------------------------------- /generators/hello/templates/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/hello/templates/src/index.ts -------------------------------------------------------------------------------- /generators/pipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/pipe/index.js -------------------------------------------------------------------------------- /generators/pipe/templates/src/app/pipe.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/pipe/templates/src/app/pipe.babel -------------------------------------------------------------------------------- /generators/pipe/templates/src/app/pipe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/pipe/templates/src/app/pipe.js -------------------------------------------------------------------------------- /generators/pipe/templates/src/app/pipe.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/pipe/templates/src/app/pipe.spec.babel -------------------------------------------------------------------------------- /generators/pipe/templates/src/app/pipe.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/pipe/templates/src/app/pipe.spec.js -------------------------------------------------------------------------------- /generators/pipe/templates/src/app/pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/pipe/templates/src/app/pipe.spec.ts -------------------------------------------------------------------------------- /generators/pipe/templates/src/app/pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/pipe/templates/src/app/pipe.ts -------------------------------------------------------------------------------- /generators/service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/service/index.js -------------------------------------------------------------------------------- /generators/service/templates/src/app/service.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/service/templates/src/app/service.babel -------------------------------------------------------------------------------- /generators/service/templates/src/app/service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/service/templates/src/app/service.js -------------------------------------------------------------------------------- /generators/service/templates/src/app/service.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/service/templates/src/app/service.spec.babel -------------------------------------------------------------------------------- /generators/service/templates/src/app/service.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/service/templates/src/app/service.spec.js -------------------------------------------------------------------------------- /generators/service/templates/src/app/service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/service/templates/src/app/service.spec.ts -------------------------------------------------------------------------------- /generators/service/templates/src/app/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/service/templates/src/app/service.ts -------------------------------------------------------------------------------- /generators/techs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/index.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/footer.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/footer.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/footer.html -------------------------------------------------------------------------------- /generators/techs/templates/src/app/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/footer.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/footer.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/footer.spec.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/footer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/footer.spec.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/footer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/footer.spec.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/footer.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/header.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/header.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/header.html -------------------------------------------------------------------------------- /generators/techs/templates/src/app/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/header.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/header.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/header.spec.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/header.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/header.spec.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/header.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/header.spec.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/header.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/index.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/index.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/index.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/index.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/main.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/main.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/main.html -------------------------------------------------------------------------------- /generators/techs/templates/src/app/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/main.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/main.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/main.spec.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/main.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/main.spec.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/main.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/main.spec.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/main.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/index.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/index.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/index.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/index.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/tech.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/tech.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/tech.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/tech.html -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/tech.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/tech.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/tech.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/tech.spec.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/tech.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/tech.spec.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/tech.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/tech.spec.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/tech.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/tech.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/techs.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/techs.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/techs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/techs.html -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/techs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/techs.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/techs.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/techs.spec.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/techs.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/techs.spec.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/techs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/techs.spec.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/techs/techs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/techs/techs.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/title.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/title.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/title.html -------------------------------------------------------------------------------- /generators/techs/templates/src/app/title.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/title.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/title.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/title.spec.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/app/title.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/title.spec.js -------------------------------------------------------------------------------- /generators/techs/templates/src/app/title.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/title.spec.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/app/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/app/title.ts -------------------------------------------------------------------------------- /generators/techs/templates/src/index.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/index.babel -------------------------------------------------------------------------------- /generators/techs/templates/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/index.css -------------------------------------------------------------------------------- /generators/techs/templates/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/index.js -------------------------------------------------------------------------------- /generators/techs/templates/src/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/index.less -------------------------------------------------------------------------------- /generators/techs/templates/src/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/index.scss -------------------------------------------------------------------------------- /generators/techs/templates/src/index.styl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/index.styl -------------------------------------------------------------------------------- /generators/techs/templates/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/techs/templates/src/index.ts -------------------------------------------------------------------------------- /generators/todoMVC/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/index.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/actions/index.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/actions/index.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/actions/index.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/actions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/actions/index.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Footer.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Footer.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Footer.html -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Footer.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Footer.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Footer.spec.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Footer.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Footer.spec.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Footer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Footer.spec.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Footer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Footer.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Header.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Header.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Header.html -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Header.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Header.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Header.spec.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Header.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Header.spec.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Header.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Header.spec.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/Header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/Header.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/MainSection.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/MainSection.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/MainSection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/MainSection.html -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/MainSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/MainSection.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/MainSection.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/MainSection.spec.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/MainSection.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/MainSection.spec.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/MainSection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/MainSection.spec.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/MainSection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/MainSection.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoItem.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoItem.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoItem.html -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoItem.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoItem.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoItem.spec.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoItem.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoItem.spec.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoItem.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoItem.spec.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoItem.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoTextInput.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoTextInput.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoTextInput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoTextInput.html -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoTextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoTextInput.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoTextInput.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoTextInput.spec.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoTextInput.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoTextInput.spec.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoTextInput.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoTextInput.spec.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/components/TodoTextInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/components/TodoTextInput.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/constants/ActionTypes.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/constants/ActionTypes.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/constants/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/constants/ActionTypes.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/constants/ActionTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/constants/ActionTypes.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/constants/TodoFilters.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/constants/TodoFilters.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/constants/TodoFilters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/constants/TodoFilters.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/constants/TodoFilters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/constants/TodoFilters.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/containers/App.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/containers/App.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/containers/App.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/containers/App.html -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/containers/App.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/containers/App.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/containers/App.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/index.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/index.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/index.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/index.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/reducers/index.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/reducers/index.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/reducers/index.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/reducers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/reducers/index.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/reducers/todos.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/reducers/todos.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/reducers/todos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/reducers/todos.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/reducers/todos.spec.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/reducers/todos.spec.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/reducers/todos.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/reducers/todos.spec.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/reducers/todos.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/reducers/todos.spec.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/app/reducers/todos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/app/reducers/todos.ts -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/index.babel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/index.babel -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/index.html -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/index.js -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/index.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/index.styl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generators/todoMVC/templates/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/generators/todoMVC/templates/src/index.ts -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/package.json -------------------------------------------------------------------------------- /test/app/index.composing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/test/app/index.composing.js -------------------------------------------------------------------------------- /test/app/index.configuring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/test/app/index.configuring.js -------------------------------------------------------------------------------- /test/app/index.fountain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/test/app/index.fountain.js -------------------------------------------------------------------------------- /test/app/index.sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/test/app/index.sample.js -------------------------------------------------------------------------------- /test/app/index.writing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/test/app/index.writing.js -------------------------------------------------------------------------------- /test/component/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/test/component/index.js -------------------------------------------------------------------------------- /test/directive/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/test/directive/index.js -------------------------------------------------------------------------------- /test/hello/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/test/hello/index.js -------------------------------------------------------------------------------- /test/pipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/test/pipe/index.js -------------------------------------------------------------------------------- /test/service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/test/service/index.js -------------------------------------------------------------------------------- /test/techs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/test/techs/index.js -------------------------------------------------------------------------------- /test/todoMVC/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FountainJS/generator-fountain-angular2/HEAD/test/todoMVC/index.js --------------------------------------------------------------------------------