-
Notifications
You must be signed in to change notification settings - Fork 281
/
rollup.config.mjs
102 lines (98 loc) · 2.4 KB
/
rollup.config.mjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import { babel } from '@rollup/plugin-babel';
import commonjs from '@rollup/plugin-commonjs';
import resolve from '@rollup/plugin-node-resolve';
import terser from '@rollup/plugin-terser';
import peerDepsExternal from 'rollup-plugin-peer-deps-external';
import fs from 'fs';
import path from 'path';
const pkg = JSON.parse(fs.readFileSync('./package.json'));
const globals = {
'waveform-data': 'WaveformData',
'konva/lib/Core': 'Konva',
'konva/lib/Animation': 'Konva',
'konva/lib/shapes/Line': 'Konva',
'konva/lib/shapes/Rect': 'Konva',
'konva/lib/shapes/Text': 'Konva'
};
function sourcemapPathTransform(sourcePath) {
return path.join('node_modules', pkg.name, './src', sourcePath);
}
export default [
// dist/peaks.js and dist/peaks.min.js are stand-alone UMD modules that
// contain all dependencies. Custom markers do not work with these builds
{
input: 'src/main.js',
output: [
{
file: 'dist/peaks.js',
name: 'peaks',
format: 'umd',
sourcemap: true,
sourcemapPathTransform
},
{
file: 'dist/peaks.min.js',
name: 'peaks',
format: 'umd',
sourcemap: true,
sourcemapPathTransform,
plugins: [
terser()
]
}
],
plugins: [
commonjs(),
resolve({ browser: true }),
babel({ babelHelpers: 'bundled' })
]
},
// dist/peaks.esm.js is an ES module bundle that does not include Konva.js
// and waveform-data.js dependencies
{
input: 'src/main.js',
output: [
{
file: 'dist/peaks.esm.js',
name: 'peaks',
format: 'es'
}
],
plugins: [
peerDepsExternal(),
commonjs(),
resolve({ browser: true }),
babel({ babelHelpers: 'bundled' })
]
},
// dist/peaks.ext.js and dist/peaks.ext.min.js are UMD builds that do not
// include Konva.js and waveform-data.js dependencies
{
input: 'src/main.js',
output: [
{
file: 'dist/peaks.ext.js',
name: 'peaks',
format: 'umd',
sourcemap: true,
globals
},
{
file: 'dist/peaks.ext.min.js',
name: 'peaks',
format: 'umd',
sourcemap: true,
globals,
plugins: [
terser()
]
}
],
plugins: [
peerDepsExternal(),
commonjs(),
resolve({ browser: true }),
babel({ babelHelpers: 'bundled' })
]
}
];