-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathbuild.mjs
74 lines (62 loc) · 1.69 KB
/
build.mjs
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
import htmlPlugin from '@chialab/esbuild-plugin-html';
import { exec } from 'child_process';
import * as esbuild from 'esbuild';
import * as vuePlugin from 'esbuild-plugin-vue3';
import fs from 'fs/promises';
const isDev = process.argv.includes('--dev');
// Esbuild
/** @type {esbuild.BuildOptions} */
const esbuildOptions = {
entryPoints: ['src/index.html', 'src/ssr.ts'],
minify: true,
bundle: true,
sourcemap: false,
chunkNames: '[name]-[hash]',
outdir: 'public/',
logLevel: 'info',
plugins: [
htmlPlugin({
minifyOptions: {
minifySvg: false,
},
}),
vuePlugin.default(),
],
define: {
'process.env.NODE_ENV': JSON.stringify('production'),
},
};
if (isDev) {
esbuildOptions.minify = false;
esbuildOptions.sourcemap = true;
esbuildOptions.chunkNames = undefined;
esbuildOptions.banner = {
js: `window.DEV_MODE = true;new EventSource("/esbuild").addEventListener("change", () => location.reload());`,
};
}
const context = await esbuild.context(esbuildOptions);
if (isDev) {
await context.watch();
await context.serve({
host: 'localhost',
servedir: 'public/',
});
} else {
console.log('Building');
await context.rebuild();
await context.dispose();
console.log('Running SSR...');
exec('node public/ssr.js', async (error, stdout, stderr) => {
if (error) {
console.error(`SSR Error: ${error}`);
return;
}
const ssrHtml = stdout.trim();
const indexPath = 'public/index.html';
let indexHtml = await fs.readFile(indexPath, 'utf8');
indexHtml = indexHtml.replace('<div id="app"></div>', `<div id="app">${ssrHtml}</div>`);
await fs.writeFile(indexPath, indexHtml);
await fs.unlink('public/ssr.js');
console.log('SSR HTML injected successfully');
});
}