You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.3 KiB
JavaScript

3 years ago
const { build } = require("esbuild");
const { spawn } = require("child_process");
3 years ago
const { sassPlugin } = require("esbuild-sass-plugin");
const glob = require("tiny-glob");
const chokidar = require("chokidar");
3 years ago
const watch = process.argv.includes("--watch");
3 years ago
(async () => {
const entryPoints = await glob("./src/back/**/*.ts");
3 years ago
build({
entryPoints,
sourcemap: true,
outdir: "./dist/back",
3 years ago
logLevel: "info",
platform: "node",
watch,
target: "node16",
format: "cjs",
});
const scss_build = await build({
entryPoints: ["./src/main.scss"],
3 years ago
sourcemap: true,
outfile: "./public/dist/style.css",
logLevel: "info",
incremental: watch,
3 years ago
plugins: [sassPlugin()],
});
scss_build.rebuild();
3 years ago
build({
entryPoints: ["./src/front/index.ts"],
sourcemap: true,
outfile: "./public/dist/bundle.js",
logLevel: "info",
bundle: true,
watch,
});
if (watch) {
const scss_watcher = chokidar.watch("src", { ignoreInitial: true });
scss_watcher.on("all", (_, path) => {
if (path.endsWith(".scss")) {
// refresh the list of all scss files in includes.scss
spawn("./node_modules/.bin/sealgen", ["generate-scss-includes"]).on(
"close",
() => {
scss_build.rebuild().catch(async (e) => {
console.error(e);
setTimeout(() => {
scss_build.rebuild();
}, 200);
});
}
);
}
});
}
3 years ago
})();