1
0

Adds setting to maintain the use of double quotes

This commit is contained in:
Bill Branan
2021-08-31 15:47:46 -04:00
parent 95a2da6410
commit 81988179e9

View File

@@ -93,7 +93,7 @@ function mergeFileWithSource(pathToSourceFile, pathToOutputFile) {
parsed_output[key] = parsed_source[key];
}
progressBar.update(80);
fs.writeFileSync(pathToOutputFile,JSON5.stringify(parsed_output,{space:'\n '}), {encoding:'utf8'})
fs.writeFileSync(pathToOutputFile,JSON5.stringify(parsed_output,{ space:'\n ', quote: '"' }), { encoding:'utf8' })
progressBar.update(100);
progressBar.stop();