├── .editorconfig ├── .gitignore ├── .travis.yml ├── .verb.md ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dist ├── es6-template.js ├── es6-template.min.js ├── es6-template.min.js.map ├── es6-template.standalone.js ├── es6-template.standalone.min.js └── es6-template.standalone.min.js.map ├── index.js ├── package.json ├── renovate.json ├── test.js └── test ├── compile-async.js ├── compile-sync.js ├── main-async.js ├── main-sync.js ├── render-async.js └── render-sync.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/.verb.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/README.md -------------------------------------------------------------------------------- /dist/es6-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/dist/es6-template.js -------------------------------------------------------------------------------- /dist/es6-template.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/dist/es6-template.min.js -------------------------------------------------------------------------------- /dist/es6-template.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/dist/es6-template.min.js.map -------------------------------------------------------------------------------- /dist/es6-template.standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/dist/es6-template.standalone.js -------------------------------------------------------------------------------- /dist/es6-template.standalone.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/dist/es6-template.standalone.min.js -------------------------------------------------------------------------------- /dist/es6-template.standalone.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/dist/es6-template.standalone.min.js.map -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/renovate.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/test.js -------------------------------------------------------------------------------- /test/compile-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/test/compile-async.js -------------------------------------------------------------------------------- /test/compile-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/test/compile-sync.js -------------------------------------------------------------------------------- /test/main-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/test/main-async.js -------------------------------------------------------------------------------- /test/main-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/test/main-sync.js -------------------------------------------------------------------------------- /test/render-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/test/render-async.js -------------------------------------------------------------------------------- /test/render-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tunnckoCore/es6-template/HEAD/test/render-sync.js --------------------------------------------------------------------------------