├── .babelrc ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── README.md ├── package.json ├── rollup.config.js ├── src └── index.js └── test ├── sample ├── main.js ├── robot.html ├── rollup.config.js └── test.coffee └── test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautis/rollup-plugin-browserify-transform/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautis/rollup-plugin-browserify-transform/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautis/rollup-plugin-browserify-transform/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautis/rollup-plugin-browserify-transform/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautis/rollup-plugin-browserify-transform/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautis/rollup-plugin-browserify-transform/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautis/rollup-plugin-browserify-transform/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautis/rollup-plugin-browserify-transform/HEAD/src/index.js -------------------------------------------------------------------------------- /test/sample/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautis/rollup-plugin-browserify-transform/HEAD/test/sample/main.js -------------------------------------------------------------------------------- /test/sample/robot.html: -------------------------------------------------------------------------------- 1 | beep boop 2 | -------------------------------------------------------------------------------- /test/sample/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautis/rollup-plugin-browserify-transform/HEAD/test/sample/rollup.config.js -------------------------------------------------------------------------------- /test/sample/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautis/rollup-plugin-browserify-transform/HEAD/test/sample/test.coffee -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lautis/rollup-plugin-browserify-transform/HEAD/test/test.js --------------------------------------------------------------------------------