console/packages/libraries/cli/bin/dev

21 lines
415 B
Text
Raw Normal View History

2024-05-23 09:33:53 +00:00
#!/usr/bin/env tsx
2022-05-18 07:26:57 +00:00
// Suppress warnings from the CLI
process.removeAllListeners('warning');
2022-05-18 07:26:57 +00:00
const oclif = require('@oclif/core');
// In dev mode -> use ts-node and dev plugins
process.env.NODE_ENV = 'development';
// In dev mode, always show stack traces
oclif.settings.debug = true;
// Start the CLI
2024-05-23 09:33:53 +00:00
oclif
.execute({ development: true, dir: __dirname })
.catch(e => {
throw e;
})
.then(() => {});