Tweak logging verbosity
Alan Pearce alan@alanpearce.eu
Sun, 24 Sep 2023 13:20:21 +0200
1 files changed, 1 insertions(+), 1 deletions(-)
jump to
M bin/build.ts → bin/build.ts
@@ -21,7 +21,7 @@ log.error("static directory not found"); process.exit(1); } fs.readdirSync("static").map((file) => { - log.info(`Copying static/${file}`); + log.debug(`Copying static/${file}`); fs.cpSync(`static/${file}`, `public/${file}`, { dereference: true, recursive: true,