We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4916579 commit 4b54c84Copy full SHA for 4b54c84
1 file changed
packages/read/src/index.ts
@@ -50,10 +50,7 @@ export default async function getChangesets(
50
);
51
52
const changesetContents = changesets.map(async (file) => {
53
- const changeset = await fs.readFile(
54
- path.join(changesetBase, file),
55
- "utf8"
56
- );
+ const changeset = await fs.readFile(path.join(changesetBase, file), "utf8");
57
58
return { ...parse(changeset), id: file.replace(".md", "") };
59
});
0 commit comments