forked from vaneenige/preact-gallery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
79 lines (77 loc) · 1.91 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
72
73
74
75
76
77
78
79
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import babel from 'rollup-plugin-babel';
import uglify from 'rollup-plugin-uglify';
import postcss from 'rollup-plugin-postcss';
const uglifySettings = {
compress: {
negate_iife: false,
unsafe_comps: true,
properties: true,
keep_fargs: false,
pure_getters: true,
collapse_vars: true,
unsafe: true,
warnings: false,
sequences: true,
dead_code: true,
drop_debugger: true,
comparisons: true,
conditionals: true,
evaluate: true,
booleans: true,
loops: true,
unused: true,
hoist_funs: true,
if_return: true,
join_vars: true,
drop_console: true,
pure_funcs: ['classCallCheck', 'invariant', 'warning'],
},
output: {
comments: false,
},
};
export default {
input: 'src/index.js',
output: {
file: 'api/public/pg.js',
format: 'iife',
name: 'pg',
sourcemap: false,
},
plugins: [
/**
* Seamless integration between Rollup and PostCSS.
* @see https://github.com/egoist/rollup-plugin-postcss
*/
postcss({
extract: true,
minimize: true,
}),
/**
* Convert ES2015 with buble.
* @see https://github.com/rollup/rollup-plugin-buble
*/
babel({
babelrc: false,
presets: [['es2015', { loose: true, modules: false }], 'stage-0'],
plugins: ['external-helpers', ['transform-react-jsx', { pragma: 'h' }]],
}),
/**
* Use the Node.js resolution algorithm with Rollup.
* @see https://github.com/rollup/rollup-plugin-node-resolve
*/
resolve({ jsnext: true }),
/**
* Convert CommonJS modules to ES2015.
* @see https://github.com/rollup/rollup-plugin-commonjs
*/
commonjs(),
/**
* Rollup plugin to minify generated bundle.
* @see https://github.com/TrySound/rollup-plugin-uglify
*/
uglify(uglifySettings),
],
};