@mondaycom/apps-cli
Version:
A cli tool to manage apps (and monday-code projects) in monday.com
20 lines (14 loc) • 401 B
JavaScript
/* eslint-disable node/shebang */
import { config } from 'dotenv';
import oclif from '@oclif/core';
config();
process.env.NODE_ENV = 'development';
// In dev mode, always show stack traces
oclif.settings.debug = true;
oclif.settings.tsnodeEnabled = true;
// Start the CLI
oclif
.run(process.argv.slice(2), import.meta.url)
.then(oclif.flush)
.catch(oclif.Errors.handle);