UNPKG
headspace
Version:
latest (0.1.1)
0.1.1
0.1.0
Next generation web header UX
github.com/gdub22/headspace
gdub22/headspace
headspace
/
rollup.config.js
10 lines
(8 loc)
•
217 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
babel
from
'rollup-plugin-babel'
export
default
{
entry
:
'src/headspace.js'
,
dest
:
'dist/headspace.js'
,
format
:
'umd'
,
moduleName
:
'Headspace'
,
plugins
: [
babel
({
presets
: [
'es2015-rollup'
] }) ] }