-
Notifications
You must be signed in to change notification settings - Fork 546
/
rollup.config.js
51 lines (46 loc) · 1.45 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
import buble from '@rollup/plugin-buble';
import license from 'rollup-plugin-license';
import path from 'path';
import terser from '@rollup/plugin-terser';
import { fileURLToPath } from 'url';
import { dirname } from 'path';
const minify = !process.env.ROLLUP_WATCH && !process.env.DEV;
/** globals process, __dirname **/
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
export default [
bundle('index.umd.js', 'chroma'),
bundle('index.umd.light.js', 'chroma-light')
];
function bundle(input, target) {
return {
input,
output: {
file: `dist/${target}${minify ? '.min' : ''}.cjs`,
format: 'umd',
globals: {}, // If you have any external dependencies, list them here
exports: 'default',
name: 'chroma'
},
plugins: [
// If we're building for production (npm run build
// instead of npm run dev), transpile and minify
buble({
transforms: { dangerousForOf: true }
}),
minify &&
terser({
mangle: true
}),
license({
sourcemap: true,
//cwd: '.', // Default is process.cwd()
banner: {
content: {
file: path.join(__dirname, 'LICENSE')
}
}
})
]
};
}