Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/sidkwok/rollup-plugin-fecs
- Owner: SidKwok
- License: mit
- Created: 2016-12-15T12:11:45.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-19T05:31:30.000Z (almost 8 years ago)
- Last Synced: 2024-10-04T21:18:02.094Z (about 1 month ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/).