style(prettier): adjusted to match prettier v3 expectations

This commit is contained in:
Matt Travi 2023-07-05 11:07:42 -05:00
parent 738cefc802
commit 272af21052
No known key found for this signature in database
GPG Key ID: 8C173646C24FED70

View File

@ -90,9 +90,7 @@ export async function gitCommits(messages, execaOptions) {
await pEachSeries( await pEachSeries(
messages, messages,
async (message) => async (message) =>
( (await execa("git", ["commit", "-m", message, "--allow-empty", "--no-gpg-sign"], execaOptions)).stdout
await execa("git", ["commit", "-m", message, "--allow-empty", "--no-gpg-sign"], execaOptions)
).stdout
); );
return (await gitGetCommits(undefined, execaOptions)).slice(0, messages.length); return (await gitGetCommits(undefined, execaOptions)).slice(0, messages.length);
} }