Skip to content

Commit

Permalink
chore: awaits prettier formatting (#926)
Browse files Browse the repository at this point in the history
  • Loading branch information
krpeacock authored Sep 12, 2024
1 parent a973a4d commit d07a384
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bin/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
});

Expand Down
1 change: 1 addition & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d07a384

Please sign in to comment.