Skip to content

Commit

Permalink
Add missing '\n' to the end of package.json file (#1510)
Browse files Browse the repository at this point in the history
  • Loading branch information
pd4d10 authored and Timer committed Feb 9, 2017
1 parent 160d8d1 commit b999405
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/react-scripts/scripts/eject.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ prompt(

fs.writeFileSync(
path.join(appPath, 'package.json'),
JSON.stringify(appPackage, null, 2)
JSON.stringify(appPackage, null, 2) + '\n'
);
console.log();

Expand Down

0 comments on commit b999405

Please sign in to comment.