├── .babelrc ├── .flowconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── script └── bootstrap ├── src └── index.js └── test ├── mocha.opts └── test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventualbuddha/babelrc-rollup/HEAD/.babelrc -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventualbuddha/babelrc-rollup/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventualbuddha/babelrc-rollup/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventualbuddha/babelrc-rollup/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventualbuddha/babelrc-rollup/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventualbuddha/babelrc-rollup/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventualbuddha/babelrc-rollup/HEAD/rollup.config.js -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventualbuddha/babelrc-rollup/HEAD/script/bootstrap -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventualbuddha/babelrc-rollup/HEAD/src/index.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --require reify 2 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eventualbuddha/babelrc-rollup/HEAD/test/test.js --------------------------------------------------------------------------------