├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src └── index.js └── test ├── fixtures ├── define.js ├── file.js └── simple.js └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /test 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetiny/rollup-plugin-re/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetiny/rollup-plugin-re/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetiny/rollup-plugin-re/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetiny/rollup-plugin-re/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetiny/rollup-plugin-re/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetiny/rollup-plugin-re/HEAD/src/index.js -------------------------------------------------------------------------------- /test/fixtures/define.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetiny/rollup-plugin-re/HEAD/test/fixtures/define.js -------------------------------------------------------------------------------- /test/fixtures/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetiny/rollup-plugin-re/HEAD/test/fixtures/file.js -------------------------------------------------------------------------------- /test/fixtures/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetiny/rollup-plugin-re/HEAD/test/fixtures/simple.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jetiny/rollup-plugin-re/HEAD/test/test.js --------------------------------------------------------------------------------