Skip to content

Commit 20e24c3

Browse files
committed
Minor changes
1 parent e3cc574 commit 20e24c3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ingestion/src/process/documentation/documentation.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,10 @@ export class Documentation implements IDocumentation {
6060
const jobs = []
6161
for (const node of nodes) {
6262
jobs.push(
63-
writeFile(`${dataDirPath}/docs-${node.id}.json`, JSON.stringify(node))
63+
writeFile(
64+
`${dataDirPath}/docs-${node.id}.json`,
65+
JSON.stringify(node, null, 2)
66+
)
6467
)
6568
}
6669
}

0 commit comments

Comments
 (0)