├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── cli.js ├── lib └── transform.js ├── package.json └── test ├── fixtures ├── actual.js ├── child-expected │ ├── foo.js │ ├── hello.txt │ └── other.js ├── child │ ├── foo.js │ ├── hello.txt │ └── other.js ├── expected.js ├── hello.txt └── vert.glsl ├── index.js └── uppercase.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | .npm-debug.log* 3 | dist/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/cli.js -------------------------------------------------------------------------------- /lib/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/lib/transform.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/actual.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/test/fixtures/actual.js -------------------------------------------------------------------------------- /test/fixtures/child-expected/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/test/fixtures/child-expected/foo.js -------------------------------------------------------------------------------- /test/fixtures/child-expected/hello.txt: -------------------------------------------------------------------------------- 1 | another text! -------------------------------------------------------------------------------- /test/fixtures/child-expected/other.js: -------------------------------------------------------------------------------- 1 | CONSOLE.LOG("OTHER!") -------------------------------------------------------------------------------- /test/fixtures/child/foo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/test/fixtures/child/foo.js -------------------------------------------------------------------------------- /test/fixtures/child/hello.txt: -------------------------------------------------------------------------------- 1 | another text! -------------------------------------------------------------------------------- /test/fixtures/child/other.js: -------------------------------------------------------------------------------- 1 | console.log("Other!") -------------------------------------------------------------------------------- /test/fixtures/expected.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/test/fixtures/expected.js -------------------------------------------------------------------------------- /test/fixtures/hello.txt: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /test/fixtures/vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/test/fixtures/vert.glsl -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/test/index.js -------------------------------------------------------------------------------- /test/uppercase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahdinosaur/transpilify/HEAD/test/uppercase.js --------------------------------------------------------------------------------