Awesome
rollup-plugin-reshape
Seamless integration between Rollup and Reshape.
Install
$ npm i rollup-plugin-reshape -D
Usage
import { join } from 'path';
import reshape from 'rollup-plugin-reshape';
import include from 'reshape-include';
export default {
entry: join(__dirname, 'main.js'),
dest: join(__dirname, 'bundle.js'),
format: 'iife',
plugins: [
reshape({
plugins: [include()],
})
]
};