Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/judas-christ/rollup-plugin-msx

Mithril MSX transform plugin for Rollup.js
https://github.com/judas-christ/rollup-plugin-msx

Last synced: about 1 month ago
JSON representation

Mithril MSX transform plugin for Rollup.js

Awesome Lists containing this project

README

        

# Rollup Plugin for MSX
> Mithril MSX transform plugin for Rollup.js

## Installation

```bash
npm install rollup-plugin-msx --save-dev
```

## Usage

Edit your `rollup.config.js` file to include the MSX plugin:

```js
import msx from 'rollup-plugin-msx';

export default {
entry: 'src/main.js',
format: 'cjs',
plugins: [msx()],
dest: 'bundle.js'
};
```