Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

small fixes

+8 -3
+5
.changeset/sweet-wings-flash.md
··· 1 + --- 2 + "starlight-cooler-credit": patch 3 + --- 4 + 5 + Small fixes in docs and throw Warnings
+1 -1
docs/src/content/docs/getting-started.mdx
··· 77 77 78 78 ```diff lang="astro" 79 79 --- 80 - // src/components/overrides/MarkdownContent.astro 80 + // src/components/overrides/TableOfContents.astro 81 81 import Default from '@astrojs/starlight/components/TableOfContents.astro' 82 82 +import DefaultBottomTableOfContentsWrapper from 'starlight-cooler-credit/components/DefaultBottomTableOfContentsWrapper.astro' 83 83 ---
+2 -2
packages/starlight-cooler-credit/libs/config.ts
··· 32 32 const errors = config.error.flatten(); 33 33 34 34 throw new AstroError( 35 - `Invalid @trueberryless-org/starlight-plugins-docs-components configuration: 35 + `Invalid starlight-cooler-credit configuration: 36 36 37 37 ${errors.formErrors.map((formError) => ` - ${formError}`).join("\n")} 38 38 ${Object.entries(errors.fieldErrors) ··· 42 42 ) 43 43 .join("\n")} 44 44 `, 45 - `See the error report above for more informations.\n\nIf you believe this is a bug, please file an issue at https://github.com/trueberryless-org/starlight-plugins-docs-components/issues/new` 45 + `See the error report above for more informations.\n\nIf you believe this is a bug, please file an issue at https://github.com/trueberryless-org/starlight-cooler-credit/issues/new` 46 46 ); 47 47 } 48 48