console/packages/libraries/cli/bin/run

14 lines
224 B
Text
Raw Normal View History

2022-05-18 07:26:57 +00:00
#!/usr/bin/env node
// Suppress warnings from the CLI
process.removeAllListeners('warning');
2024-05-23 09:33:53 +00:00
const oclif = require('@oclif/core');
oclif
.execute({ dir: __dirname })
.catch(e => {
throw e;
})
.then(() => {});