From d68c3feaff4097e67530eb9ca7cc5e3f392a5a1f Mon Sep 17 00:00:00 2001 From: Will Boyd Date: Mon, 27 Jan 2025 09:33:42 -0500 Subject: [PATCH] Clean up console logs --- src/wizard.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/wizard.js b/src/wizard.js index b996cf8..7653b51 100644 --- a/src/wizard.js +++ b/src/wizard.js @@ -19,7 +19,6 @@ export async function getConfig() { const commandLineOptions = options.all; Object.assign(config, getCommandLineAnswers(commandLineOptions)); - console.log(1, config); if (config.wizard) { console.log('\nStarting wizard...'); @@ -29,7 +28,6 @@ export async function getConfig() { console.log('\nSkipping wizard...'); } - console.log(2, config); return config; } @@ -61,7 +59,6 @@ function getCommandLineAnswers(options) { const opts = commander.program.parse().opts(); for (const [key, value] of Object.entries(opts)) { - console.log(key, value); if (key === 'wizard' || commander.program.getOptionValueSource(key) !== 'default') { continue; }