Skip to content

Commit bebe320

Browse files
committedDec 1, 2016
chore(rollup): create rollup es2015 bundle config
1 parent 3750841 commit bebe320

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed
 

‎rollup.es.js

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import buble from 'rollup-plugin-buble'
2+
3+
export default {
4+
entry: 'src/index.js',
5+
dest: 'dist/multicast.es.js',
6+
moduleName: 'mostMulticast',
7+
sourceMap: true,
8+
plugins: [
9+
buble()
10+
],
11+
globals: {
12+
'@most/prelude': 'mostPrelude'
13+
}
14+
}

0 commit comments

Comments
 (0)
Please sign in to comment.