homey
Version:
Command-line interface and type declarations for Homey Apps
20 lines (19 loc) • 533 B
JavaScript
export const desc = 'Dependency related commands (Python only)';
export const builder = (yargs) => {
return yargs
.commandDir('dependencies', {
extensions: ['.mjs'],
})
.option('find-links', {
default: undefined,
type: 'string',
desc: 'Additional location to search for candidate Python package distributions',
})
.option('docker-socket-path', {
default: undefined,
type: 'string',
description: 'Path to the Docker socket.',
})
.demandCommand()
.help();
};