@oussema_mili/test-pkg-123 1.1.32 → 1.1.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cli-commands.js +1 -0
- package/package.json +1 -1
package/cli-commands.js
CHANGED
|
@@ -344,6 +344,7 @@ function setupCLICommands(program, startServerFunction) {
|
|
|
344
344
|
.command("run")
|
|
345
345
|
.description("run the agent in foreground mode (for development)")
|
|
346
346
|
.option("-p, --port <port>", "WebSocket port to listen on", String(WS_PORT))
|
|
347
|
+
.option("--debug", "Enable debug mode for verbose logging")
|
|
347
348
|
.action(async (options) => {
|
|
348
349
|
console.log(chalk.blue("Starting Fenwave Agent in foreground mode..."));
|
|
349
350
|
|