bud.tapAsync
Access the bud.js object through an async callback. Useful to maintain a function chain.
Usage
bud.config.js
export default async bud => {
await bud.tapAsync(bud => {
await bud.sh(`echo 'hello world!'`)
})
}
It may be helpful to consider that the bud.config.js
export is esssentially just a bud.tapAsync callback.