mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-10-29 22:17:23 +01:00
12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
#!/usr/bin/env node
|
|
import { Cli } from 'clipanion'
|
|
|
|
import { cli } from './cli'
|
|
|
|
const [, , ...args] = process.argv
|
|
|
|
cli.runExit(args, Cli.defaultContext).catch(() => {
|
|
console.error('Error occurred...')
|
|
process.exit(1)
|
|
})
|