mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
9874a53206
Split out legacy modes to their own dynamically imported bundle to reduce main code bundle size.
35 lines
987 B
JavaScript
35 lines
987 B
JavaScript
#!/usr/bin/env node
|
|
|
|
const esbuild = require('esbuild');
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
|
|
// Check if we're building for production
|
|
// (Set via passing `production` as first argument)
|
|
const isProd = process.argv[2] === 'production';
|
|
|
|
// Gather our input files
|
|
const entryPoints = {
|
|
app: path.join(__dirname, '../../resources/js/app.js'),
|
|
code: path.join(__dirname, '../../resources/js/code/index.mjs'),
|
|
'legacy-modes': path.join(__dirname, '../../resources/js/code/legacy-modes.mjs'),
|
|
};
|
|
|
|
// Locate our output directory
|
|
const outdir = path.join(__dirname, '../../public/dist');
|
|
|
|
// Build via esbuild
|
|
esbuild.build({
|
|
bundle: true,
|
|
metafile: true,
|
|
entryPoints,
|
|
outdir,
|
|
sourcemap: true,
|
|
target: 'es2020',
|
|
mainFields: ['module', 'main'],
|
|
format: 'esm',
|
|
minify: isProd,
|
|
logLevel: "info",
|
|
}).then(result => {
|
|
fs.writeFileSync('esbuild-meta.json', JSON.stringify(result.metafile));
|
|
}).catch(() => process.exit(1)); |