-
Notifications
You must be signed in to change notification settings - Fork 13
/
build-pages.mjs
70 lines (61 loc) · 1.82 KB
/
build-pages.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
import { copyFile, readdir, mkdir, unlink, lstat, rmdir } from "fs/promises";
import { existsSync as exists } from "fs";
import { rollup } from "rollup";
import ts from "@rollup/plugin-typescript";
import swc from "@rollup/plugin-swc";
import esbuild from "rollup-plugin-esbuild";
import cjs from "@rollup/plugin-commonjs"
const plugins = [
cjs(),
ts(),
swc(),
esbuild({
minify: false,
treeShaking: false,
format: "esm"
})
];
// Clear and make paths
async function delDirRecursively(path) {
if (!exists(path)) return;
for (const file of await readdir(path)) {
const filePath = `${path}/${file}`;
if ((await lstat(filePath)).isDirectory()) {
await delDirRecursively(filePath);
} else {
console.log(`Deleting file: ${filePath}`);
await unlink(filePath);
}
}
console.log(`Deleting folder: ${path}`);
await rmdir(path);
}
await delDirRecursively("./dist/pages");
await mkdir("./dist/pages");
await mkdir("./dist/pages/public");
// Copy static files for analytics page.
await copyFile("./src/pages/index.html", "./dist/pages/index.html");
if (exists("./src/pages/public")) {
for (const file of await readdir("./src/pages/public")) {
copyFile(`./src/pages/public/${file}`, `./dist/pages/public/${file}`);
}
}
// Analytics Page
console.log("Building Analytics...");
try {
const analytics = await rollup({
input: "./src/pages/index.ts",
onwarn: () => { return; },
plugins
});
await analytics.write({
file: "./dist/pages/public/index.js",
format: "cjs",
compact: true
});
await analytics.close();
console.log("Successfully built Analytics!");
} catch (err) {
console.error(`Failed to build Analytics:\n ${err}`);
process.exit(1);
}