Skip to content

Commit 4b54c84

Browse files
committed
fmt
1 parent 4916579 commit 4b54c84

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

packages/read/src/index.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,7 @@ export default async function getChangesets(
5050
);
5151

5252
const changesetContents = changesets.map(async (file) => {
53-
const changeset = await fs.readFile(
54-
path.join(changesetBase, file),
55-
"utf8"
56-
);
53+
const changeset = await fs.readFile(path.join(changesetBase, file), "utf8");
5754

5855
return { ...parse(changeset), id: file.replace(".md", "") };
5956
});

0 commit comments

Comments
 (0)