Skip to content

v1.6.0

Latest

Choose a tag to compare

@markjm markjm released this 09 Apr 19:20
· 8 commits to master since this release

Ergonomics change to support directly awaiting .stdout instead of needing to wrap the await exec in parens.

Before:

const result = (await git.status()).stdout

After:

const result = await git.status().stdout