console/packages/libraries/cli/bin/run
2024-05-23 11:33:53 +02:00

10 lines
150 B
JavaScript
Executable file

#!/usr/bin/env node
const oclif = require('@oclif/core');
oclif
.execute({ dir: __dirname })
.catch(e => {
throw e;
})
.then(() => {});