From 3386bbedbbd5d6d9d9a50426a75edfb884e3e027 Mon Sep 17 00:00:00 2001 From: Ruben Bridgewater Date: Sat, 24 Feb 2018 22:43:15 +0000 Subject: [PATCH] chore: fix stringify spaces --- tools/build.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build.js b/tools/build.js index 13daf67..f5fca0a 100644 --- a/tools/build.js +++ b/tools/build.js @@ -56,7 +56,7 @@ redis.command().then(function (res) { // Use safe-stable-stringify instead fo JSON.stringify // for easier diffing - var content = stringify(commands, { space: ' ' }) + var content = stringify(commands, null, ' ') fs.writeFileSync(commandPath, content) })