Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Vanilla-IceCream/rollup-plugin-reshape

Seamless integration between Rollup and Reshape.
https://github.com/Vanilla-IceCream/rollup-plugin-reshape

reshape rollup

Last synced: 25 days ago
JSON representation

Seamless integration between Rollup and Reshape.

Awesome Lists containing this project

README

        

# rollup-plugin-reshape [![Build Status](https://travis-ci.org/Vanilla-IceCream/rollup-plugin-reshape.svg?branch=master)](https://travis-ci.org/Vanilla-IceCream/rollup-plugin-reshape) [![Coverage Status](https://coveralls.io/repos/github/Vanilla-IceCream/rollup-plugin-reshape/badge.svg?branch=master)](https://coveralls.io/github/Vanilla-IceCream/rollup-plugin-reshape?branch=master)

Seamless integration between Rollup and Reshape.

## Install

```bash
$ npm i rollup-plugin-reshape -D
```

## Usage

```js
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()],
})
]
};
```