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.
2 parents fefc6da + 9c2efc9 commit 88cc768Copy full SHA for 88cc768
scripts/ci/codegen/pushToAlgoliaDoc.ts
@@ -54,6 +54,8 @@ async function pushToAlgoliaDoc(): Promise<void> {
54
await run(`cp ${toAbsolutePath('specs/bundled/*.doc.yml')} ${pathToSpecs}`);
55
await run(`cp ${toAbsolutePath('config/release.config.json')} ${pathToSpecs}`);
56
await run(`cp ${toAbsolutePath('snippets/guides/*.json')} ${pathToSpecs}`);
57
+ // add block extension ban words like `analytics` so we use a different file name just so the doc dans render it
58
+ await run(`mv ${pathToSpecs}/analytics.doc.yml ${pathToSpecs}/searchstats.doc.yml`);
59
60
if ((await getNbGitDiff({ head: null, cwd: tempGitDir })) === 0) {
61
console.log(`❎ Skipping push docs because there is no change.`);
0 commit comments