console/packages/libraries/cli/bin/dev
Kamil Kisiela dc3bc1ec87 Hello
2022-05-18 09:26:57 +02:00

17 lines
426 B
JavaScript
Executable file

#!/usr/bin/env node
const oclif = require('@oclif/core');
const path = require('path');
const project = path.join(__dirname, '..', 'tsconfig.json');
// In dev mode -> use ts-node and dev plugins
process.env.NODE_ENV = 'development';
require('ts-node').register({ project });
// In dev mode, always show stack traces
oclif.settings.debug = true;
// Start the CLI
oclif.run().then(oclif.flush).catch(oclif.Errors.handle);