UNPKG

218 BJavaScriptView Raw
1#!/usr/bin/env node
2import c from "picocolors";
3import { cli } from './dist/cli.js';
4
5try {
6 cli.parse();
7} catch (e) {
8 if (e.constructor.name === "CACError")
9 console.error(`${c.red("Err:")} ${e.message}\n`);
10}