A bpkg command plugin that invokes a 'start' command with 'pre' and 'post' life cycles.
Available as a bpkg
bpkg install [-g] bpkg-start
Add a start
command in the commands
object with optional prestart
and poststart
commands which run before and after the start
command
respectively.
{
"commands": {
"prestart": "echo 'runs before start'",
"start": "echo 'start command'",
"poststart": "echo 'runs after start'"
}
}
MIT