Skip to content

Commit c7e3e63

Browse files
chore(deps): bump the npm group with 2 updates (#1152)
* chore(deps): bump the npm group with 2 updates Bumps the npm group with 2 updates: [@astrojs/starlight](https://github.com/withastro/starlight/tree/HEAD/packages/starlight) and [astro](https://github.com/withastro/astro/tree/HEAD/packages/astro). Updates `@astrojs/starlight` from 0.38.4 to 0.39.2 - [Release notes](https://github.com/withastro/starlight/releases) - [Changelog](https://github.com/withastro/starlight/blob/main/packages/starlight/CHANGELOG.md) - [Commits](https://github.com/withastro/starlight/commits/@astrojs/starlight@0.39.2/packages/starlight) Updates `astro` from 6.2.1 to 6.3.1 - [Release notes](https://github.com/withastro/astro/releases) - [Changelog](https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md) - [Commits](https://github.com/withastro/astro/commits/astro@6.3.1/packages/astro) --- updated-dependencies: - dependency-name: "@astrojs/starlight" dependency-version: 0.39.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: npm - dependency-name: astro dependency-version: 6.3.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: npm ... Signed-off-by: dependabot[bot] <support@github.com> * fix: refactor starlight sidebar for v0.39.0 compatibility --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Gil Desmarais <git@desmarais.de>
1 parent ad9f4ba commit c7e3e63

3 files changed

Lines changed: 221 additions & 437 deletions

File tree

astro.config.mjs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -281,11 +281,11 @@ export default defineConfig({
281281
"web-application/deployment",
282282
{
283283
label: "Guides",
284-
autogenerate: { directory: "web-application/guides" },
284+
items: [{ autogenerate: { directory: "web-application/guides" } }],
285285
},
286286
{
287287
label: "Reference",
288-
autogenerate: { directory: "web-application/reference" },
288+
items: [{ autogenerate: { directory: "web-application/reference" } }],
289289
},
290290
],
291291
},
@@ -297,15 +297,15 @@ export default defineConfig({
297297
"ruby-gem/installation",
298298
{
299299
label: "Guides",
300-
autogenerate: { directory: "ruby-gem/guides" },
300+
items: [{ autogenerate: { directory: "ruby-gem/guides" } }],
301301
},
302302
{
303303
label: "Tutorials",
304-
autogenerate: { directory: "ruby-gem/tutorials" },
304+
items: [{ autogenerate: { directory: "ruby-gem/tutorials" } }],
305305
},
306306
{
307307
label: "Reference",
308-
autogenerate: { directory: "ruby-gem/reference" },
308+
items: [{ autogenerate: { directory: "ruby-gem/reference" } }],
309309
},
310310
],
311311
},
@@ -316,7 +316,7 @@ export default defineConfig({
316316
{
317317
label: "Get Involved",
318318
collapsed: false,
319-
autogenerate: { directory: "get-involved" },
319+
items: [{ autogenerate: { directory: "get-involved" } }],
320320
},
321321
],
322322
defaultLocale: "root",

0 commit comments

Comments
 (0)