Currently, in our commands we output in verbose mode chalk.green('DONE') to confirm that the command has completed its execution. We implement this separately in each command. To improve consistency and simplify our code base, we should move it outside commandAction so that it's executed centrally and for each command without us having to think twice about implementing it. An added benefit is, that it will help us simplify our tests.
Currently, in our commands we output in verbose mode
chalk.green('DONE')to confirm that the command has completed its execution. We implement this separately in each command. To improve consistency and simplify our code base, we should move it outsidecommandActionso that it's executed centrally and for each command without us having to think twice about implementing it. An added benefit is, that it will help us simplify our tests.