rollup-plugin-reshape [](https://travis-ci.org/Vanilla-IceCream/rollup-plugin-reshape) [](https://coveralls.io/github/Vanilla-IceCream/rollup-plugin-reshape?branch=master)
August 22, 2017 ยท View on GitHub
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()],
})
]
};