in docs.js [222:232]
async function handleMenuFiles(menuFilePath, docInfo, localPath) {
const nativeObject = await loadYaml(menuFilePath);
const {version, commitId, docs} = docInfo
nativeObject.version = version;
nativeObject.commitId = commitId.slice(0, 7);
nativeObject.repoDocs = docs;
handleMenuPath(nativeObject.catalog, localPath)
const yamlString = YAML.stringify(nativeObject, 2);
await promises.writeFile(menuFilePath, yamlString, 'utf8');
}