UNPKG
nk-lightbox
Version:
latest (1.0.0)
1.0.0
Lightbox or model box
github.com/saeed3e/nk-lightbox
saeed3e/nk-lightbox
nk-lightbox
/
rollup.config.js
15 lines
(14 loc)
•
290 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const
path =
require
(
'path'
);
import
babel
from
'rollup-plugin-babel'
;
export
default
[{
input
:
`./main.js`
,
output
: [{
file
:
`./index.js`
,
format
:
'es'
, }],
plugins
: [
babel
({
exclude
:
'node_modules/**'
}) ] }]