Skip to content

v1.6.0

Latest
Compare
Choose a tag to compare
@markjm markjm released this 09 Apr 19:20
· 4 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