-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrollup.config.js
36 lines (32 loc) · 942 Bytes
/
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
import resolve from 'rollup-plugin-node-resolve';
import uglify from 'rollup-plugin-uglify-es';
import replace from 'rollup-plugin-replace';
// import gzipPlugin from 'rollup-plugin-gzip';
// import {eslint} from 'rollup-plugin-eslint';
// import globals from 'rollup-plugin-node-globals';
// `npm run build` -> `production` is true
// `npm run dev` -> `production` is false
const production = !process.env.ROLLUP_WATCH;
export default {
input: 'src/main.js',
output: {
file: 'public/bundle.js',
format: 'esm',
sourcemap: true
},
plugins: [
// eslint({
// /* your options */
// }),
resolve(), // tells Rollup how to find date-fns in node_modules
replace({
exclude: ['node_modules/**', 'public/**'],
include: 'src/loader.js',
ENV: (production ? false : true),
DATE: Date.now(),
}),
production && uglify(),
// netlify gzips in post processing
// production && gzipPlugin(),
]
};