UNPKG
@riim/curry
Version:
latest (1.0.0)
1.0.0
Fast curry implementation
github.com/Riim/curry
Riim/curry
@riim/curry
/
rollup.config.js
19 lines
(14 loc)
•
266 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import
eslint
from
'rollup-plugin-eslint'
;
import
babel
from
'rollup-plugin-babel'
;
export
default
{
entry
:
'src/curry.js'
,
format
:
'umd'
,
moduleName
:
'curry'
,
dest
:
'dist/curry.js'
,
plugins
: [
eslint
(),
babel
({
exclude
:
'node_modules/**'
}) ] };