-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.js
68 lines (62 loc) · 2.06 KB
/
build.js
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
const Bundler = require("parcel-bundler");
const { execSync } = require("child_process");
const fs = require("fs");
const path = require("path");
const ora = require("ora");
const chalk = require("chalk");
const mkdirp = require("mkdirp");
const Prerenderer = require("@prerenderer/prerenderer");
const Puppeteer = require("@prerenderer/renderer-puppeteer");
const htmlnano = require("htmlnano");
const prettyMs = require("pretty-ms");
const bundler = new Bundler("src/index.html", {
watch: false,
publicUrl: process.env.PUBLIC_URL
});
bundler.on("buildEnd", async () => {
if (process.env.NODE_ENV !== "production") return;
console.log("");
const spinner = ora(chalk.grey("Prerendering")).start();
let routes = ["/"]; // the default route
let rendererConfig = {
renderAfterDocumentEvent: "post-react-render"
};
const { outDir } = bundler.options;
const publicPathOutDir = `${outDir}${process.env.PUBLIC_URL}`;
mkdirp.sync(publicPathOutDir);
execSync(
`find ${outDir} -maxdepth 1 -type f | xargs -I {} cp {} ${publicPathOutDir}`
);
const prerenderer = new Prerenderer({
staticDir: outDir,
renderer: new Puppeteer(rendererConfig)
});
try {
await prerenderer.initialize();
const start = Date.now();
const renderedRoutes = await prerenderer.renderRoutes(routes);
await Promise.all(
renderedRoutes.map(async route => {
const outputDir = path.join(outDir, route.route);
const file = path.resolve(outputDir, "index.html");
mkdirp.sync(outputDir);
const { html } = await htmlnano.process(route.html.trim());
// eslint-disable-next-line no-sync
fs.writeFileSync(file, html);
})
);
execSync(`rm -rf ${publicPathOutDir}`);
const end = Date.now();
spinner.stopAndPersist({
symbol: "✨ ",
text: chalk.green(`Prerendered in ${prettyMs(end - start)}.`)
});
} catch (error) {
console.error(error);
// eslint-disable-next-line unicorn/no-process-exit, no-process-exit
process.exit(1);
} finally {
prerenderer.destroy();
}
});
bundler.bundle();