├── .editorconfig ├── .gitignore ├── .travis.yml ├── HISTORY.md ├── LICENSE.md ├── README.md ├── index.js ├── logo ├── logo.svg ├── logo_i.svg └── old.svg ├── package.json └── test ├── compile-async.js ├── compile-client-async.js ├── compile-client.js ├── compile-file-async.js ├── compile-file-client-async.js ├── compile-file-client.js ├── compile-file.js ├── compile.js ├── dependencies.json ├── expected.bar ├── index.js ├── input-formats.js ├── input.foo ├── locals.json ├── normalize-async.js ├── normalize.js ├── options.json ├── output-format.js ├── render-async.js ├── render-file-async.js ├── render-file.js ├── render.js └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/index.js -------------------------------------------------------------------------------- /logo/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/logo/logo.svg -------------------------------------------------------------------------------- /logo/logo_i.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/logo/logo_i.svg -------------------------------------------------------------------------------- /logo/old.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/logo/old.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/package.json -------------------------------------------------------------------------------- /test/compile-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/compile-async.js -------------------------------------------------------------------------------- /test/compile-client-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/compile-client-async.js -------------------------------------------------------------------------------- /test/compile-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/compile-client.js -------------------------------------------------------------------------------- /test/compile-file-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/compile-file-async.js -------------------------------------------------------------------------------- /test/compile-file-client-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/compile-file-client-async.js -------------------------------------------------------------------------------- /test/compile-file-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/compile-file-client.js -------------------------------------------------------------------------------- /test/compile-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/compile-file.js -------------------------------------------------------------------------------- /test/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/compile.js -------------------------------------------------------------------------------- /test/dependencies.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /test/expected.bar: -------------------------------------------------------------------------------- 1 | Hola 2 | -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/index.js -------------------------------------------------------------------------------- /test/input-formats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/input-formats.js -------------------------------------------------------------------------------- /test/input.foo: -------------------------------------------------------------------------------- 1 | Hola 2 | -------------------------------------------------------------------------------- /test/locals.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/normalize-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/normalize-async.js -------------------------------------------------------------------------------- /test/normalize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/normalize.js -------------------------------------------------------------------------------- /test/options.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /test/output-format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/output-format.js -------------------------------------------------------------------------------- /test/render-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/render-async.js -------------------------------------------------------------------------------- /test/render-file-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/render-file-async.js -------------------------------------------------------------------------------- /test/render-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/render-file.js -------------------------------------------------------------------------------- /test/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/render.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jstransformers/jstransformer/HEAD/test/test.js --------------------------------------------------------------------------------