Skip to content

Commit

Permalink
add a newline to the manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
dherman committed Mar 28, 2024
1 parent 74fe46a commit 2a68374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/create-neon/src/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export default class Package {
const sorted = sort(JSON.parse(await fs.readFile(filename, "utf8")));

// 4. Save the result to package.json.
await fs.writeFile(filename, JSON.stringify(sorted, undefined, 2));
await fs.writeFile(filename, JSON.stringify(sorted, undefined, 2) + "\n");

return new Package(sorted);
}
Expand Down

0 comments on commit 2a68374

Please sign in to comment.