Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/sidkwok/rollup-plugin-fecs

Rollup plugin to verify entry point and all imported files with fecs
https://github.com/sidkwok/rollup-plugin-fecs

Last synced: 22 days ago
JSON representation

Rollup plugin to verify entry point and all imported files with fecs

Awesome Lists containing this project

README

        

# rollup-plugin-fecs [![Build Status](https://travis-ci.org/SidKwok/rollup-plugin-fecs.svg?branch=master)](https://travis-ci.org/SidKwok/rollup-plugin-fecs)
Rollup plugin to verify entry point and all imported files with fecs.

## Install
```
npm install rollup-plugin-fecs
```

## Usage
```
import { rollup } from 'rollup';
import fecs from 'rollup-plugin-fecs';

rollup({
entry: 'main.js',
plugins: [
fecs({ /* your options */ })
]
});
```

## Options
See more options here [fecs](https://github.com/ecomfe/fecs/).