Skip to content

Commit

Permalink
Merge pull request #346 from vahnag/vahagn/parser-minify-json
Browse files Browse the repository at this point in the history
Minify parser output json
  • Loading branch information
elanh authored Jan 18, 2024
2 parents 40c2eda + ed9fa40 commit e321fd8
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions parser/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,7 @@ async function main() {
}

const outputFilePath = path.join(__dirname, 'output.json');
await fs.promises.writeFile(
outputFilePath,
JSON.stringify(groupedEntries, null, 2),
);
await fs.promises.writeFile(outputFilePath, JSON.stringify(groupedEntries));
}

main();
Expand Down

0 comments on commit e321fd8

Please sign in to comment.