Tweak logging verbosity
1 file changed, 1 insertion(+), 1 deletion(-)
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,