The current API for plugin.error/common.error is this:
common.error(message, code, _continue);
This API has been good enough for us, but we may want to modify it to take an options parameter for more flexibility:
common.error(message, options);
We would migrate continue and code into the options (code already defaults to 1 and continue defaults to false).
The current API for
plugin.error/common.erroris this:This API has been good enough for us, but we may want to modify it to take an options parameter for more flexibility:
We would migrate
continueandcodeinto the options (codealready defaults to 1 andcontinuedefaults to false).