Skip to content

Commit

Permalink
Yay pretty
Browse files Browse the repository at this point in the history
  • Loading branch information
Jbudone committed May 14, 2018
1 parent 788057a commit 2042560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resourceBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ let processResources = (package) => {
console.log("Saving package changes: " + package.name + " ==> " + package.file);

// Save package JSON (save .data)
const prettyCache = JSON.stringify(package.data); // TODO Prettify cache json?
const prettyCache = JSON.stringify(package.data, null, 2); // TODO Prettify cache json?
fs.writeFile(package.file, prettyCache, (err, bufferData) => {
if (err) {
console.error(err);
Expand Down

0 comments on commit 2042560

Please sign in to comment.