From 5802d0208b33fab4e0513c962120ebad69f49f91 Mon Sep 17 00:00:00 2001 From: Will Cory Date: Tue, 11 Mar 2025 13:00:30 -0700 Subject: [PATCH] fix: Add debug as log option --- src/cli/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/index.ts b/src/cli/index.ts index ef40b236..a6e5c3dc 100644 --- a/src/cli/index.ts +++ b/src/cli/index.ts @@ -21,7 +21,7 @@ cli cli .command('build') .option('-c, --clean', 'clean the cache and re-bundle') - .option('-l, --logLevel [level]', 'info | warn | error | silent') + .option('-l, --logLevel [level]', 'debug' | 'info | warn | error | silent') .option('-o, --outDir [dir]', 'output directory (default: dist)') .option('-p, --publicDir [dir]', 'public (asset) directory (default: public)') .option('--clearScreen', 'clear the terminal screen (default: true)')