2023-03-13 15:20:59 +03:00
|
|
|
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
|
|
|
|
},
|
2023-03-30 23:55:09 +03:00
|
|
|
watch: {
|
|
|
|
include: `${JS_SRC}/**`
|
|
|
|
},
|
2023-03-13 15:20:59 +03:00
|
|
|
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'),
|
2023-03-18 01:28:44 +03:00
|
|
|
build('home'),
|
2023-03-13 15:20:59 +03:00
|
|
|
build('categories'),
|
|
|
|
build('page'),
|
|
|
|
build('post'),
|
|
|
|
build('misc')
|
|
|
|
];
|