/
githubmirror
/
lerna
Обзор
Документация
Войти
/
githubmirror
/
lerna
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
website/sidebars.js
84 строки
2 KB
James Henry
chore: upgrade website dependencies (#4396)
17 июл 2026, 12:13
Не верифицирован
17 июл 2026, 12:13
5319e18
Код
Авторство
О чём код?
/** * Creating a sidebar enables you to: - create an ordered group of docs - render a sidebar for each doc of that group - provide next/previous navigation The sidebars can be generated from the filesystem, or explicitly defined here. Create as many sidebars as you want. */ // @ts-check /** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */ const sidebars = { // By default, Docusaurus generates a sidebar from the docs folder structure // main: [{ type: "autogenerated", dirName: "." }], // But you can create a sidebar manually main: [ "introduction", "getting-started", "lerna-and-nx", "lerna-and-ai", { type: "category", label: "Features", items: [ "features/run-tasks", "features/cache-tasks", "features/share-your-cache", "features/project-graph", "features/distribute-tasks", "features/version-and-publish", "features/editor-integrations", "features/workspace-watching", ], link: { type: "generated-index", title: "How To Guides", description: "Get Started", slug: "/features", }, }, { type: "category", label: "Concepts", items: [ "concepts/task-pipeline-configuration", "concepts/how-caching-works", "concepts/dte-guide", "concepts/configuring-published-files", ], link: { type: "generated-index", title: "Concepts", description: "Get a higher level understanding of concepts used in Lerna", slug: "/concepts", keywords: ["caching", "dte", "versioning", "publishing"], }, }, { type: "category", label: "Recipes", items: [ "recipes/using-pnpm-with-lerna", "recipes/using-bun-with-lerna", "recipes/oidc-trusted-publishing", ], }, { type: "category", label: "API Reference", items: ["api-reference/commands", "api-reference/configuration", "api-reference/utilities"], }, "lerna-and-nx-version-matrix", "legacy-package-management", "faq", "lerna6-obsolete-options", "troubleshooting", ], }; module.exports = sidebars;