diff --git a/src/cli/build.ts b/src/cli/build.ts index 84497e0..be38f4b 100644 --- a/src/cli/build.ts +++ b/src/cli/build.ts @@ -9,10 +9,12 @@ import { build } from '../core/build' type Flags = { config: string } export default class Build extends Command { + static description = 'Builds tokens for configured formats.' + static flags = { config: flags.string({ char: 'c', - description: 'Config path', + description: 'The path to a themekit config file.', default: 'themekit.config.js', }), }