vilicvane / clime

⌨ The command-line interface framework for TypeScript.
252 stars 10 forks source link

Allow subcommands descriptions configured in `default.js` #1

Closed vilicvane closed 8 years ago

vilicvane commented 8 years ago
export const subcommands = [
    {
        name: 'install',
        alias: 'i',
        brief: 'Show useless message of installation'
    },
    {
        name: 'view',
        aliases: ['show', 'v'],
        brief: 'Show useless message of viewing'
    }
];