UNPKG

@puls-atlas/cli

Version:

The Puls Atlas CLI tool for managing Atlas projects

11 lines 414 B
#!/usr/bin/env -S node --no-warnings=ExperimentalWarning import { program } from 'commander'; import registerCommands from './cmd/register.js'; registerCommands(program); program.parse(process.argv); process.on('uncaughtException', error => { if (error instanceof Error && error.name === 'ExitPromptError') {} else { console.error('An unexpected error occurred:', error.message); process.exit(1); } });