UNPKG
git-like-audit-trail
Version:
latest (1.0.1)
1.0.1
1.0.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Git like audit trail
github.com/awcjack/git-like-audit-trail
git-like-audit-trail
/
rollup.config.js
18 lines
(16 loc)
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import
babel
from
'@rollup/plugin-babel'
export
default
{
input
:
'src/index.js'
,
output
: [ {
file
:
'dist/bundle.js'
,
format
:
'cjs'
} ],
plugins
: [
babel
({
babelHelpers
:
'runtime'
,
exclude
:
'node_modules/**'
}), ], };