UNPKG
react-binds
Version:
latest (1.0.7)
1.0.7
1.0.6
React functions to loop and map over data
react-binds
/
rollup.config.js
16 lines
(14 loc)
•
291 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
babel
from
'rollup-plugin-babel'
;
export
default
{
input
:
'index.js'
,
output
: {
file
:
'dist/bundle.js'
,
format
:
'cjs'
, },
plugins
: [
babel
({
exclude
:
'node_modules/**'
, }), ],
external
: [
'react'
], };