├── .gitignore ├── .travis.yml ├── LICENSE ├── NEWS ├── README.md ├── package.json ├── src ├── analyse_requires.js └── fengari-loader.js ├── test ├── .babelrc ├── analyse_requires.test.js ├── compiler.js ├── example.lua └── loader.test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/package.json -------------------------------------------------------------------------------- /src/analyse_requires.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/src/analyse_requires.js -------------------------------------------------------------------------------- /src/fengari-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/src/fengari-loader.js -------------------------------------------------------------------------------- /test/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/test/.babelrc -------------------------------------------------------------------------------- /test/analyse_requires.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/test/analyse_requires.test.js -------------------------------------------------------------------------------- /test/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/test/compiler.js -------------------------------------------------------------------------------- /test/example.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/test/example.lua -------------------------------------------------------------------------------- /test/loader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/test/loader.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengari-lua/fengari-loader/HEAD/yarn.lock --------------------------------------------------------------------------------