initial commit
This commit is contained in:
70
rollup.config.js
Normal file
70
rollup.config.js
Normal file
@@ -0,0 +1,70 @@
|
||||
import babel from '@rollup/plugin-babel';
|
||||
import terser from '@rollup/plugin-terser';
|
||||
import { nodeResolve } from '@rollup/plugin-node-resolve';
|
||||
import yaml from '@rollup/plugin-yaml';
|
||||
import fs from 'fs';
|
||||
import pkg from './package.json';
|
||||
|
||||
const SRC_DEFAULT = '_javascript';
|
||||
const DIST_DEFAULT = 'assets/js/dist';
|
||||
|
||||
const SRC_PWA = `${SRC_DEFAULT}/pwa`;
|
||||
const DIST_PWA = '_app';
|
||||
|
||||
const banner = `/*!
|
||||
* ${pkg.name} v${pkg.version} | © ${pkg.since} ${pkg.author} | ${pkg.license} Licensed | ${pkg.homepage}
|
||||
*/`;
|
||||
|
||||
const isProd = process.env.BUILD === 'production';
|
||||
|
||||
function cleanup(...directories) {
|
||||
for (const dir of directories) {
|
||||
fs.rm(dir, { recursive: true, force: true }, (err) => {
|
||||
if (err) {
|
||||
console.error(`Failed to remove directory ${dir}: ${err}`);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function build(filename, opts = {}) {
|
||||
const src = opts.src || SRC_DEFAULT;
|
||||
const dist = opts.dist || DIST_DEFAULT;
|
||||
|
||||
return {
|
||||
input: `${src}/${filename}.js`,
|
||||
output: {
|
||||
file: `${dist}/${filename}.min.js`,
|
||||
format: 'iife',
|
||||
name: 'Chirpy',
|
||||
banner,
|
||||
sourcemap: !isProd
|
||||
},
|
||||
watch: {
|
||||
include: `${src}/**`
|
||||
},
|
||||
plugins: [
|
||||
babel({
|
||||
babelHelpers: 'bundled',
|
||||
presets: ['@babel/env'],
|
||||
plugins: ['@babel/plugin-transform-class-properties']
|
||||
}),
|
||||
nodeResolve(),
|
||||
yaml(),
|
||||
isProd && terser()
|
||||
]
|
||||
};
|
||||
}
|
||||
|
||||
cleanup(DIST_DEFAULT, DIST_PWA);
|
||||
|
||||
export default [
|
||||
build('commons'),
|
||||
build('home'),
|
||||
build('categories'),
|
||||
build('page'),
|
||||
build('post'),
|
||||
build('misc'),
|
||||
build('app', { src: SRC_PWA, dist: DIST_PWA }),
|
||||
build('sw', { src: SRC_PWA, dist: DIST_PWA })
|
||||
];
|
||||
Reference in New Issue
Block a user