Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 558 Bytes

README.md

File metadata and controls

33 lines (24 loc) · 558 Bytes

bpkg-start

A bpkg command plugin that invokes a 'start' command with 'pre' and 'post' life cycles.

Install

Available as a bpkg

bpkg install [-g] bpkg-start

Usage

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'"
  }
}

License

MIT