cbf
Version:
A package for creating scripts to store and run your most commonly used CLI commands for a repo or just in general
15 lines (10 loc) • 416 B
JavaScript
/* eslint-disable */
const { uncaughtExceptionListener, unhandledRejectionListener } = require('./src/utility');
// Add exception and rejection listeners before anything else is run which will print an unknown
// error if in prod env or a stack trace if in test env
uncaughtExceptionListener();
unhandledRejectionListener();
/* eslint-enable */
const { init } = require('./src/cli');
init();