#!/usr/bin/env node import yargs from 'yargs'; import { builder, handler } from './command'; export { handler, builder } from './command'; export { start } from './dev'; export * from './types/api-methods'; if (require.main === module) { yargs(process.argv.slice(2)).command('$0', 'stackbit-dev', builder, handler()).demandCommand().parse(); }