forked from cotes2020/jekyll-theme-chirpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
46 lines (43 loc) · 1.01 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
import babel from '@rollup/plugin-babel';
import terser from '@rollup/plugin-terser';
import license from 'rollup-plugin-license';
import path from 'path';
const JS_SRC = '_javascript';
const JS_DIST = 'assets/js/dist';
const isProd = process.env.NODE_ENV === 'production';
function build(filename) {
return {
input: [`${JS_SRC}/${filename}.js`],
output: {
file: `${JS_DIST}/${filename}.min.js`,
format: 'iife',
name: 'Chirpy',
sourcemap: !isProd
},
watch: {
include: `${JS_SRC}/**`
},
plugins: [
babel({
babelHelpers: 'bundled',
presets: ['@babel/env'],
plugins: ['@babel/plugin-proposal-class-properties']
}),
license({
banner: {
commentStyle: 'ignored',
content: { file: path.join(__dirname, JS_SRC, '_copyright') }
}
}),
isProd && terser()
]
};
}
export default [
build('commons'),
build('home'),
build('categories'),
build('page'),
build('post'),
build('misc')
];