File tree 2 files changed +10
-7
lines changed
2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -730,6 +730,8 @@ The supported events are:
730
730
| ` preAction ` , ` postAction ` | before/after action handler for this command and its nested subcommands | ` (thisCommand, actionCommand) ` |
731
731
| ` preSubcommand ` | before parsing direct subcommand | ` (thisCommand, subcommand) ` |
732
732
733
+ For an overview of the life cycle events see [ parsing life cycle and hooks] ( ./docs/parsing-and-hooks.md ) .
734
+
733
735
## Automated help
734
736
735
737
The help information is auto-generated based on the information commander already knows about your program. The default
@@ -1116,6 +1118,7 @@ There is more information available about:
1116
1118
1117
1119
- [ deprecated] ( ./docs/deprecated.md ) features still supported for backwards compatibility
1118
1120
- [ options taking varying arguments] ( ./docs/options-taking-varying-arguments.md )
1121
+ - [ parsing life cycle and hooks] ( ./docs/parsing-and-hooks.md )
1119
1122
1120
1123
## Support
1121
1124
Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ Starting with top-level command (program):
14
14
15
15
Once reach final (leaf) command:
16
16
17
- - check for missing mandatory options
18
- - check for conflicting options
19
- - check for unknown options
20
- - process remaining args as command-arguments
21
- - call ` preAction ` hook
22
- - call action handler
23
- - call ` postAction ` hook
17
+ - check for missing mandatory options
18
+ - check for conflicting options
19
+ - check for unknown options
20
+ - process remaining args as command-arguments
21
+ - call ` preAction ` hook
22
+ - call action handler
23
+ - call ` postAction ` hook
You can’t perform that action at this time.
0 commit comments