Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/TheNeuronProject/rollup-plugin-eft
eft loader for rollup
https://github.com/TheNeuronProject/rollup-plugin-eft
Last synced: 25 days ago
JSON representation
eft loader for rollup
- Host: GitHub
- URL: https://github.com/TheNeuronProject/rollup-plugin-eft
- Owner: TheNeuronProject
- License: mit
- Created: 2017-03-13T10:20:26.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-06-30T12:21:39.000Z (over 1 year ago)
- Last Synced: 2024-05-21T00:39:08.715Z (7 months ago)
- Language: JavaScript
- Size: 150 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - eft - Compile ef.js templates. (Plugins / Templating)
README
# rollup-plugin-eft
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://raw.githubusercontent.com/ClassicOldSong/rollup-plugin-eft/master/LICENSE) [![npm](https://img.shields.io/npm/dt/rollup-plugin-eft.svg?style=flat-square)](https://www.npmjs.com/package/rollup-plugin-eft)[ef.js](https://github.com/ClassicOldSong/ef.js) template loader for rollup
``` javascript
import Component from 'some_module.eft'
const component = new Component(options)
```## Install
``` bash
npm install rollup-plugin-eft --save-dev
# or
yarn add rollup-plugin-eft --dev
```## Usage
``` javascript
import { rollup } from "rollup"
import eft from "rollup-plugin-eft"rollup({
entry: "main.js",
plugins: [
eft()
]
})
```## License
[MIT](http://cos.mit-license.org/)