forked from kurkle/color
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
71 lines (69 loc) · 1.43 KB
/
rollup.config.js
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
import analyze from 'rollup-plugin-analyzer';
import cleanup from 'rollup-plugin-cleanup';
import {terser} from 'rollup-plugin-terser';
import {visualizer} from 'rollup-plugin-visualizer';
import {homepage, name, main, module, version} from './package.json';
const input = 'src/index.js';
const inputESM = 'src/index.esm.js';
const banner = `/*!
* ${name} v${version}
* ${homepage}
* (c) ${(new Date(process.env.SOURCE_DATE_EPOCH ? (process.env.SOURCE_DATE_EPOCH * 1000) : new Date().getTime())).getFullYear()} Jukka Kurkela
* Released under the MIT License
*/`;
export default [
{
input: input,
plugins: [
analyze({summaryOnly: true}),
cleanup({
sourcemap: true
})
],
output: {
name,
file: main,
banner: banner,
format: 'umd',
indent: false
}
},
{
input: input,
plugins: [
terser({
output: {
preamble: banner
}
}),
visualizer({
sourcemap: true,
title: name,
template: 'treemap',
filename: 'docs/stats.html'
})
],
output: {
name,
file: main.replace('.js', '.min.js'),
format: 'umd',
sourcemap: true,
indent: false
}
},
{
input: inputESM,
plugins: [
cleanup({
sourcemap: true
})
],
output: {
name,
file: module,
banner: banner,
format: 'esm',
indent: false
}
},
];