#!/usr/bin/env node // @ts-check import { fileURLToPath } from 'url'; import { dirname } from 'path'; const __filename = fileURLToPath(import.meta.url); const __dirname = dirname(__filename); async function main() { const { execute } = await import('@oclif/core'); await execute({ development: true, dir: __dirname }); } main();