├── .gitignore ├── .npmignore ├── README.md ├── index.js ├── package.json └── test ├── fixtures ├── SyntaxCheck.js ├── errors.js └── index.js └── loader-test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sairion/buble-loader/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sairion/buble-loader/HEAD/.npmignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sairion/buble-loader/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sairion/buble-loader/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sairion/buble-loader/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/SyntaxCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sairion/buble-loader/HEAD/test/fixtures/SyntaxCheck.js -------------------------------------------------------------------------------- /test/fixtures/errors.js: -------------------------------------------------------------------------------- 1 | // double arrow? 2 | const add = (a, b) ==> 1 3 | -------------------------------------------------------------------------------- /test/fixtures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sairion/buble-loader/HEAD/test/fixtures/index.js -------------------------------------------------------------------------------- /test/loader-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sairion/buble-loader/HEAD/test/loader-test.js --------------------------------------------------------------------------------