rollup-plugin-reshape
v0.2.2
Published
Seamless integration between Rollup and Reshape.
Downloads
12
Readme
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()],
})
]
};