From 91c8089649e801a8818703f72ef9c3587dbf67c5 Mon Sep 17 00:00:00 2001 From: Kai Peacock Date: Thu, 12 Sep 2024 09:41:23 -0700 Subject: [PATCH] chore: awaits prettier formatting --- bin/version.ts | 2 +- docs/CHANGELOG.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/version.ts b/bin/version.ts index dbd16ce2..cdc78c67 100644 --- a/bin/version.ts +++ b/bin/version.ts @@ -53,7 +53,7 @@ workspaces.forEach(async workspace => { json.devDependencies = updateDeps(json.devDependencies); } - const formatted = prettier.format(JSON.stringify(json), { + const formatted = await prettier.format(JSON.stringify(json), { parser: 'json-stringify', }); diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index f1be422d..9e9359ac 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,6 +4,7 @@ ### Added +- chore: awaits prettier formatting in release automation - feat: expose inner certificate in `Certificate` for inspection or use in raw calls. `Certificate.cert` is now a public property - feat: allow creation of multiple Actors in `useAuthClient` by passing a record to `actorOptions` with the actor name as the key, and `CreateActorOptions` as the value - feat: sync_call support in HttpAgent and Actor