Skip to content

Commit

Permalink
Merge pull request #33 from noffle/pretty_config
Browse files Browse the repository at this point in the history
Pretty prints the JSON config to its store.
  • Loading branch information
daviddias committed Apr 3, 2016
2 parents 07c2f85 + 7bbfbe6 commit f17ec93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ exports.setUp = (basePath, blobStore, locks) => {
.on('finish', () => {
locks.unlock(callback)
})
.end(JSON.stringify(config))
.end(JSON.stringify(config, null, 2))
})
}
}
Expand Down

0 comments on commit f17ec93

Please sign in to comment.