Skip to content

Commit

Permalink
fix(app): Fix indentation after bump
Browse files Browse the repository at this point in the history
  • Loading branch information
thaiat committed Nov 8, 2016
1 parent d1ce923 commit 35cdda5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/versionHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ var bumpFiles = function(files, version, outputDir) {
var json = fileHelper.readJsonFile(file);

json.version = version;
let retval = JSON.stringify(json, null, 4);
let retval = JSON.stringify(json, null, 2);
return Promise.fromCallback(function(cb) {
fs.writeFile(getOutputFile(file, outputDir), retval, cb);
})
Expand Down

0 comments on commit 35cdda5

Please sign in to comment.