Pazisme Mod loading screen (#85)
Build / build (push) Successful in 58s
Lint / lint (push) Failing after 13s

Co-authored-by: Julien Valverdé <julien.valverde@mailo.com>
Co-authored-by: Renovate Bot <renovate-bot@valverde.cloud>
Reviewed-on: #85
This commit was merged in pull request #85.
This commit is contained in:
2026-05-17 19:31:28 +02:00
parent 8cd4caeaf0
commit d5191d6838
82 changed files with 3801 additions and 580 deletions
+16
View File
@@ -0,0 +1,16 @@
const chokidar = require("chokidar");
const build = require("./build");
chokidar
.watch(["style.css", "build.js", "docs", "fonts", "icon"], {
usePolling: true,
})
.on("change", (file) => {
console.log(
`[${new Date().toLocaleTimeString()}] ${file} changed -- rebuilding...`
);
build();
});
var liveServer = require("live-server");
liveServer.start({ port: 3000, root: "dist" });