Skip to content

Commit

Permalink
[Console] Add back a new line at the end of the definitions files
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliacech committed Jun 21, 2023
1 parent ddc250f commit a90111b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/kbn-generate-console-definitions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"private": true,
"version": "1.0.0",
"license": "SSPL-1.0 OR Elastic License 2.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export function generateConsoleDefinitions({
};
fs.writeFileSync(
join(definitionsFolder, `${name}.json`),
JSON.stringify(fileContent, null, 2),
JSON.stringify(fileContent + '\n', null, 2),
'utf8'
);
});
Expand Down

0 comments on commit a90111b

Please sign in to comment.