From b0ef43db583b02ac7d519d4a8a346ce17b45077c Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Thu, 25 May 2017 00:32:50 -0400 Subject: [PATCH] Use Python tool to beautify JSON into unminified /json file --- build/build.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build/build.sh b/build/build.sh index 98a3ba22..691ee00a 100644 --- a/build/build.sh +++ b/build/build.sh @@ -1,7 +1,6 @@ #!/bin/bash mkdir -p ../json -node md2json.js ../README.md > ../json/api.json +node md2json.js ../README.md > ../json/api.min.json +python -m json.tool ../json/api.min.json > ../json/api.json cat ../json/api.json -ls -l .. -ls -l ../json