Add CLI config, bin scripts, CI workflow and types

This commit is contained in:
2026-01-29 10:07:37 +00:00
parent 8e926decee
commit 35a1477342

18
bin/dev.js Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env node
import { run } from '@oclif/core';
import { fileURLToPath } from 'url';
import { dirname } from 'path';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const main = async () => {
const config = await import('../oclif.config.js');
await run(process.argv.slice(2), config.default);
};
main().catch((error) => {
console.error(error);
process.exit(1);
});