From a7e8f70224450ab0843a178c7ff93c983c697e3b Mon Sep 17 00:00:00 2001 From: Pradeet Date: Tue, 11 Jun 2019 18:46:03 +0530 Subject: [PATCH] writing prettified quickFix.lock file instead of minifies. --- lib/utils.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/utils.js b/lib/utils.js index 32a091e..c324822 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -95,7 +95,10 @@ module.exports = { //Create and save to __quickfix__/quickfix.lock const path = root + "/__quickfix__"; - jsonfile.writeFileSync(path + "/quickfix.lock", changes); + jsonfile.writeFileSync(path + "/quickfix.lock", changes, { + spaces: '\t', + replacer: null + }); }, deleteCache: function() { console.log("> Cleaning cache.");