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
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