-
Notifications
You must be signed in to change notification settings - Fork 50
/
rollup.config.js
68 lines (63 loc) · 1.54 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
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import {terser} from 'rollup-plugin-terser';
import css from 'rollup-plugin-css-only';
import execute from 'rollup-plugin-execute';
import babel from 'rollup-plugin-babel';
let plugins = [
babel(),
// so Rollup can find externals
resolve({extensions: ['.js'], preferBuiltins: true}),
// so Rollup can convert externals to an ES module
commonjs(),
];
// minify only in production mode
if (process.env.NODE_ENV === 'production') {
plugins.push(
// minify
terser({
ecma: 2018,
warnings: true,
compress: {
drop_console: true,
},
})
);
}
export default [
// Rollup src
{
input: 'src/tool-bar.js',
output: [
{
dir: "dist",
format: 'cjs',
sourcemap: true,
},
],
// loaded externally
external: [
"atom",
"electron",
// node stuff
"fs",
"path",
],
plugins: plugins,
},
// Rollup iconsets
{
input: 'iconsets/rollup-iconsets.js',
output: {
dir: "dist",
format: 'cjs'
},
plugins: [
css({ output: 'iconsets.css' }),
execute([
'csso dist/iconsets.css --output dist/iconsets.css',
'shx rm dist/rollup-iconsets.js'
]),
],
},
];