console/packages/libraries/cli/bin/run
2024-07-26 09:51:03 +02:00

13 lines
224 B
JavaScript
Executable file

#!/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(() => {});