├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── index.js ├── package.json ├── register.js └── test ├── fixtures ├── broken.tpl ├── ignore.js ├── imports.tpl ├── index.tpl └── uses-underscore.tpl └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | /node_modules 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /test 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/jstify/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/jstify/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/jstify/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/jstify/HEAD/package.json -------------------------------------------------------------------------------- /register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/jstify/HEAD/register.js -------------------------------------------------------------------------------- /test/fixtures/broken.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zertosh/jstify/HEAD/test/fixtures/broken.tpl -------------------------------------------------------------------------------- /test/fixtures/ignore.js: -------------------------------------------------------------------------------- 1 | /* I should be <%= "ignored" %> */ 2 | -------------------------------------------------------------------------------- /test/fixtures/imports.tpl: -------------------------------------------------------------------------------- 1 |