fediversity.eu/node_modules/yaml/bin.mjs
2024-03-26 16:28:28 +01:00

12 lines
310 B
JavaScript
Executable file

#!/usr/bin/env node
import { UserError, cli, help } from './dist/cli.mjs'
cli(process.stdin, error => {
if (error instanceof UserError) {
if (error.code === UserError.ARGS) console.error(`${help}\n`)
console.error(error.message)
process.exitCode = error.code
} else if (error) throw error
})