We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3cc574 commit 20e24c3Copy full SHA for 20e24c3
ingestion/src/process/documentation/documentation.ts
@@ -60,7 +60,10 @@ export class Documentation implements IDocumentation {
60
const jobs = []
61
for (const node of nodes) {
62
jobs.push(
63
- writeFile(`${dataDirPath}/docs-${node.id}.json`, JSON.stringify(node))
+ writeFile(
64
+ `${dataDirPath}/docs-${node.id}.json`,
65
+ JSON.stringify(node, null, 2)
66
+ )
67
)
68
}
69
0 commit comments