Skip to content

Commit

Permalink
Fix missing trailing newline in package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
mkrause committed Nov 20, 2024
1 parent 6b79443 commit e887ff4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,4 @@
"react": ">= 19.0.0-rc.1",
"react-dom": ">= 19.0.0-rc.1"
}
}
}
2 changes: 1 addition & 1 deletion package.json.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,4 +184,4 @@ const packageConfigWithComment = {
const packageConfigFormatted = JSON.stringify(packageConfigWithComment, null, 2);

// Write to `package.json`
fs.writeFileSync('./package.json', packageConfigFormatted);
fs.writeFileSync('./package.json', packageConfigFormatted + '\n');

0 comments on commit e887ff4

Please sign in to comment.