├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── example ├── css │ └── styles.css ├── dist │ ├── alltags.js │ └── app.built.js ├── index.html ├── js │ ├── app.js │ └── app.precompiled.js ├── requirejs.build.js ├── requirejs.config.js ├── requirejs_bundled.html ├── requirejs_example.html ├── systemjs_example.html ├── systemjs_precompiled.html └── tags │ ├── panels.tag │ ├── timer.tag │ └── todo.tag ├── jspm.config.js ├── package.json ├── requirejs-riot.js ├── systemjs-riot.js └── test └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | example/*.html -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | jspm_packages 3 | fabfile* 4 | example/dist/*.tag.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/README.md -------------------------------------------------------------------------------- /example/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/css/styles.css -------------------------------------------------------------------------------- /example/dist/alltags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/dist/alltags.js -------------------------------------------------------------------------------- /example/dist/app.built.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/dist/app.built.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/index.html -------------------------------------------------------------------------------- /example/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/js/app.js -------------------------------------------------------------------------------- /example/js/app.precompiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/js/app.precompiled.js -------------------------------------------------------------------------------- /example/requirejs.build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/requirejs.build.js -------------------------------------------------------------------------------- /example/requirejs.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/requirejs.config.js -------------------------------------------------------------------------------- /example/requirejs_bundled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/requirejs_bundled.html -------------------------------------------------------------------------------- /example/requirejs_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/requirejs_example.html -------------------------------------------------------------------------------- /example/systemjs_example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/systemjs_example.html -------------------------------------------------------------------------------- /example/systemjs_precompiled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/systemjs_precompiled.html -------------------------------------------------------------------------------- /example/tags/panels.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/tags/panels.tag -------------------------------------------------------------------------------- /example/tags/timer.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/tags/timer.tag -------------------------------------------------------------------------------- /example/tags/todo.tag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/example/tags/todo.tag -------------------------------------------------------------------------------- /jspm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/jspm.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/package.json -------------------------------------------------------------------------------- /requirejs-riot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/requirejs-riot.js -------------------------------------------------------------------------------- /systemjs-riot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/systemjs-riot.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuasoFoundries/systemjs-riot/HEAD/test/test.js --------------------------------------------------------------------------------