├── .editorconfig ├── .env ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── contributing.md ├── lib └── index.js ├── package.json ├── test ├── fixtures │ ├── default │ │ ├── app.js │ │ ├── index.sgr │ │ └── main.js │ ├── json │ │ ├── app.js │ │ ├── index.sgr │ │ └── main.js │ └── template │ │ ├── error.sgr │ │ └── template.sgr └── index.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .nyc_output 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/contributing.md -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/default/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/test/fixtures/default/app.js -------------------------------------------------------------------------------- /test/fixtures/default/index.sgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/test/fixtures/default/index.sgr -------------------------------------------------------------------------------- /test/fixtures/default/main.js: -------------------------------------------------------------------------------- 1 | // nothing to see here 2 | -------------------------------------------------------------------------------- /test/fixtures/json/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/test/fixtures/json/app.js -------------------------------------------------------------------------------- /test/fixtures/json/index.sgr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/test/fixtures/json/index.sgr -------------------------------------------------------------------------------- /test/fixtures/json/main.js: -------------------------------------------------------------------------------- 1 | // nothing to see here 2 | -------------------------------------------------------------------------------- /test/fixtures/template/error.sgr: -------------------------------------------------------------------------------- 1 | p {{ notItem.title }} 2 | -------------------------------------------------------------------------------- /test/fixtures/template/template.sgr: -------------------------------------------------------------------------------- 1 | p {{ item.title }} 2 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/test/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/static-dev/spike-rooftop/HEAD/yarn.lock --------------------------------------------------------------------------------