UNPKG
@tempest/subject
Version:
latest (1.1.2)
1.1.2
1.1.1
1.1.0
1.0.0
subject operator for tempest
github.com/TylorS/tempest
TylorS/tempest
@tempest/subject
/
rollup.config.js
15 lines
(14 loc)
•
269 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
buble
from
'rollup-plugin-buble'
export
default
{
entry
:
'lib/index.js'
,
dest
:
'dist/tempest-subject.js'
,
format
:
'umd'
,
moduleName
:
'tempestSubject'
,
sourceMap
:
true
,
globals
: {
'@tempest/core'
:
'tempestCore'
},
plugins
: [
buble
() ] }