forked from gka/chroma.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
55 lines (48 loc) · 1.47 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
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import buble from 'rollup-plugin-buble';
import license from 'rollup-plugin-license';
import replace from 'rollup-plugin-replace';
import path from 'path';
import {uglify} from 'rollup-plugin-uglify';
const minify = !process.env.ROLLUP_WATCH && !process.env.DEV;
/** globals process, __dirname **/
module.exports = [
bundle('index.js', 'chroma'),
bundle('index-light.js', 'chroma-light'),
];
function bundle(input, target) {
return {
input,
output: {
file: `${target}${minify ? '.min' : ''}.js`,
format: 'umd',
name: 'chroma',
},
plugins: [
resolve(),
commonjs(),
replace({
delimiters: ['@@', ''],
'version': require('./package.json').version
}),
// If we're building for production (npm run build
// instead of npm run dev), transpile and minify
buble({
transforms: { dangerousForOf: true }
}),
minify && uglify({
mangle: true
}),
license({
sourcemap: true,
//cwd: '.', // Default is process.cwd()
banner: {
content: {
file: path.join(__dirname, 'LICENSE')
}
}
}),
]
}
}