#!/usr/bin/env node // Suppress warnings from the CLI process.removeAllListeners('warning'); const oclif = require('@oclif/core'); oclif .execute({ dir: __dirname }) .catch(e => { throw e; }) .then(() => {});