UNPKG
kampos
Version:
latest (0.16.0)
0.16.0
0.14.12
0.14.11
0.14.10
0.14.9
0.14.8
0.14.7
0.14.6
0.14.5
0.14.4
0.14.3
0.14.2
0.14.1
0.13.1
0.12.0
0.11.7
0.11.6
0.11.5
0.11.4
0.11.3
0.11.2
0.11.0
0.10.2
0.10.1
0.10.0
0.9.2
0.9.1
0.8.0
0.7.1
0.7.0
0.6.1
0.6.0
0.5.2
0.5.1
0.5.0
0.4.0
0.3.5
0.3.4
0.3.2
0.3.1
0.3.0
0.2.2
0.2.1
0.2.0
0.1.0
Tiny and fast effects compositor on WebGL
wix-incubator.github.io/kampos/
wix-incubator/kampos
kampos
/
rollup.build.js
17 lines
(15 loc)
•
317 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
progress
from
'rollup-plugin-progress'
;
import
filesize
from
'rollup-plugin-filesize'
;
export
default
{
input
:
'index.js'
,
output
: {
file
:
'dist/index.cjs'
,
format
:
'cjs'
, },
plugins
: [
progress
({
clearLine
:
false
, }),
filesize
(), ], };