-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(cli): Deprecated flags/commands (#737)
- Loading branch information
1 parent
df07091
commit 4961854
Showing
17 changed files
with
157 additions
and
101 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
diff --git a/node_modules/@oclif/core/lib/interfaces/parser.d.ts b/node_modules/@oclif/core/lib/interfaces/parser.d.ts | ||
index f533dcc..29deae0 100644 | ||
--- a/node_modules/@oclif/core/lib/interfaces/parser.d.ts | ||
+++ b/node_modules/@oclif/core/lib/interfaces/parser.d.ts | ||
@@ -140,6 +140,7 @@ export declare type FlagProps = { | ||
* List of flags that cannot be used with this flag. | ||
*/ | ||
exclusive?: string[]; | ||
+ sensitive?: boolean; | ||
/** | ||
* Exactly one of these flags must be provided. | ||
*/ | ||
@@ -159,7 +160,6 @@ export declare type FlagProps = { | ||
}; | ||
export declare type BooleanFlagProps = FlagProps & { | ||
type: 'boolean'; | ||
- allowNo: boolean; | ||
}; | ||
export declare type OptionFlagProps = FlagProps & { | ||
type: 'option'; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.