UNPKG

athom-cli

Version:

Command-line interface for Homey Apps

15 lines (14 loc) 277 B
'use strict'; exports.desc = 'App related commands'; exports.builder = yargs => { return yargs .commandDir('app') .option('path', { alias: 'p', type: 'string', desc: 'Path to a Homey App directory', default: process.cwd(), }) .demandCommand() .help() }