Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/judas-christ/rollup-plugin-msx
- Owner: judas-christ
- License: mit
- Created: 2016-01-20T22:31:52.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-21T17:06:41.000Z (almost 9 years ago)
- Last Synced: 2024-11-21T15:07:26.437Z (about 1 month ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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'
};
```