Initial open-source release

This commit is contained in:
Andrey Avtomonov 2026-05-10 23:12:26 +02:00
commit 1a42152e6f
1199 changed files with 257054 additions and 0 deletions

9
packages/cli/src/bin.ts Normal file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env node
import { installStartupProfileReporter, profileMark, profileSpan } from './startup-profile.js';
installStartupProfileReporter();
profileMark('bin:entry');
const { runKloCli } = await profileSpan('import ./cli-runtime.js', () => import('./cli-runtime.js'));
profileMark('bin:runKloCli');
process.exitCode = await runKloCli(process.argv.slice(2));