mirror of
https://github.com/profullstack/logicsrc.git
synced 2026-08-13 22:37:29 +00:00
7 lines
293 B
JavaScript
7 lines
293 B
JavaScript
import { accessSync } from "node:fs";
|
|
|
|
for (const file of ["index.html", "public/manifest.webmanifest", "public/icon.svg", "public/service-worker.js", "src/main.ts", "src/styles.css"]) {
|
|
accessSync(new URL(`../${file}`, import.meta.url));
|
|
}
|
|
|
|
console.log("commandboard-web assets verified");
|