1
0
mirror of https://github.com/cotes2020/jekyll-theme-chirpy.git synced 2025-12-18 21:53:26 +00:00

refactor(build): modularize JS code

- replace gulp with rollup
- remove JS output from repo
This commit is contained in:
Cotes Chung
2023-03-13 20:20:59 +08:00
parent 002f02533d
commit b69d3d7edd
55 changed files with 1267 additions and 1247 deletions

42
rollup.config.js Normal file
View File

@@ -0,0 +1,42 @@
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
},
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('categories'),
build('page'),
build('post'),
build('misc')
];