diff --git a/bin/dev.js b/bin/dev.js index c87b65b4a..4d228c93e 100755 --- a/bin/dev.js +++ b/bin/dev.js @@ -3,7 +3,7 @@ async function main() { const { execute } = await import('@oclif/core'); await execute({ development: true, dir: import.meta.url }).then(msg => { - if (msg) { + if (msg && typeof msg === 'string') { // eslint-disable-next-line no-console console.log(msg); }