diff --git a/bin/dev.js b/bin/dev.js index 7b76f0c..0878134 100755 --- a/bin/dev.js +++ b/bin/dev.js @@ -2,5 +2,5 @@ // eslint-disable-next-line node/shebang, unicorn/prefer-top-level-await ;(async () => { const oclif = await import('@oclif/core') - await oclif.execute({development: true, dir: __dirname}) + await oclif.execute({development: true, dir: import.meta.url}) })()