diff --git a/lib/config-loader.js b/lib/config-loader.js index 4016673..e5a0a95 100644 --- a/lib/config-loader.js +++ b/lib/config-loader.js @@ -38,7 +38,7 @@ module.exports.loadConfig = function(basepath, fn) { */ module.exports.saveConfig = function(resources, basepath, fn) { var resourcesPath = path.join(basepath, '/app.dpd') - , json = JSON.stringify(resources); + , json = JSON.stringify(resources, null, '\t'); fs.writeFile(resourcesPath, json, 'utf-8', function(err) { if (err) return fn(err);