add subDirectory option, move @ to # in relative paths, fix builder
All checks were successful
Code quality checks / biome (push) Successful in 12s

This commit is contained in:
creations 2025-06-13 20:21:45 -04:00
parent e0f4c50f20
commit 7b02602e86
Signed by: creations
GPG key ID: 8F553AA4320FC711
9 changed files with 73 additions and 47 deletions

View file

@ -1,4 +1,4 @@
import type { ansiColors, logLevelValues } from "@lib/config";
import type { ansiColors, logLevelValues } from "#lib/config";
type LogLevelValue = (typeof logLevelValues)[keyof typeof logLevelValues];
type LogLevel = keyof typeof logLevelValues;
@ -11,6 +11,7 @@ type LoggerConfig = {
rotate?: boolean;
maxFiles?: number | null;
fileNameFormat?: string;
subDirectory?: string | null;
console?: boolean;
consoleColor?: boolean;