diff --git a/cli/index.js b/cli/index.js index 7f768c9f..f0ff2157 100644 --- a/cli/index.js +++ b/cli/index.js @@ -86,7 +86,7 @@ const cli = (input) => { }), ); - for (const command of input.commands) { + for (const command of Object.entries(input.commands ?? {})) { addCommand(command); }