command icon indicating copy to clipboard operation
command copied to clipboard

oclif base command

Results 17 command issues
Sort by recently updated
recently updated
newest added

**Base abstract child** ```ts import { Command, flags } from '@oclif/command' abstract class AP extends Command { static flags = { help: flags.help({ char: 'h' }), file: flags.string({ description: 'File...

**EDIT FROM JEFF: despite what this says, we already support strongly-typed flags, but with typescript 3.x I think it would also be possible to support args** As of now, when...

enhancement

The enum flag with multiple does not work. When creating an enum flag with multiple options, they are not properly processed due to the build not returning an array over...

bug

Bumps [@oclif/help](https://github.com/oclif/help) from 1.0.1 to 1.0.15. Release notes Sourced from @​oclif/help's releases. 1.0.15 Bug Fixes deps: bump @​oclif/config from 1.18.15 to 1.18.16 (7da3073) 1.0.14 Bug Fixes deps: bump @​oclif/config from...

dependencies

Bumps [@oclif/config](https://github.com/oclif/config) from 1.18.2 to 1.18.16. Release notes Sourced from @​oclif/config's releases. 1.18.16 Bug Fixes deps: bump @​oclif/parser from 3.8.15 to 3.8.16 (a4acc8c) deps: bump tslib from 2.6.0 to 2.6.1...

dependencies

@W-13825184@ requires: https://github.com/oclif/core/pull/751

This makes it compatible with TypeScript 4.8 before this change you get an error: ``` packages/app/node_modules/@oclif/command/lib/command.d.ts:70:31 - error TS2344: Type 'F' does not satisfy the constraint 'Output'. 70 }>(options?: Parser.Input,...

cla:missing