├── .gitattributes ├── css └── app.css ├── .gitignore ├── package.json ├── .editorconfig ├── index.html ├── readme.md ├── src └── app.imba ├── js └── app.js └── imba.min.js /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /css/app.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | app-template.css overrides 4 | 5 | remove this comment if used 6 | remove this file if not 7 | 8 | */ 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/todomvc-app-css/* 2 | !node_modules/todomvc-app-css/index.css 3 | 4 | node_modules/todomvc-common/* 5 | !node_modules/todomvc-common/base.js 6 | !node_modules/todomvc-common/base.css 7 | 8 | node_modules/imba/* 9 | !node_modules/imba/imba.min.js 10 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "scripts": { 4 | "build": "imba compile src/ -o js/", 5 | "watch": "imba watch src/ -o js/" 6 | }, 7 | "dependencies": { 8 | "imba": "^0.14.2", 9 | "todomvc-app-css": "^2.0.0", 10 | "todomvc-common": "^1.0.0" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = tab 5 | end_of_line = lf 6 | charset = utf-8 7 | trim_trailing_whitespace = true 8 | insert_final_newline = true 9 | 10 | [package.json] 11 | indent_style = space 12 | indent_size = 2 13 | 14 | [*.md] 15 | trim_trailing_whitespace = false 16 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |