From 53f1c95717633c15478079d609958b52998ed4ea Mon Sep 17 00:00:00 2001 From: Jacob Lamb Date: Thu, 25 Jan 2024 02:18:06 -0800 Subject: [PATCH] Fix: update doc links (#9804) * Fix: update doc links * More links * Remove docs line --- examples/with-markdoc/src/components/Aside.astro | 2 +- packages/astro/performance/fixtures/utils/Aside.astro | 2 +- packages/create-astro/src/index.ts | 3 --- .../test/fixtures/propagated-assets/src/components/Aside.astro | 2 +- .../test/fixtures/render-html/src/components/Aside.astro | 2 +- 5 files changed, 4 insertions(+), 7 deletions(-) diff --git a/examples/with-markdoc/src/components/Aside.astro b/examples/with-markdoc/src/components/Aside.astro index ec93314f25..be15e8c0ae 100644 --- a/examples/with-markdoc/src/components/Aside.astro +++ b/examples/with-markdoc/src/components/Aside.astro @@ -1,6 +1,6 @@ --- // Inspired by the `Aside` component from docs.astro.build -// https://github.com/withastro/docs/blob/main/src/components/Aside.astro +// https://github.com/withastro/starlight/blob/main/packages/starlight/integrations/asides.ts interface Props { type?: 'note' | 'tip' | 'caution' | 'danger'; diff --git a/packages/astro/performance/fixtures/utils/Aside.astro b/packages/astro/performance/fixtures/utils/Aside.astro index ec93314f25..be15e8c0ae 100644 --- a/packages/astro/performance/fixtures/utils/Aside.astro +++ b/packages/astro/performance/fixtures/utils/Aside.astro @@ -1,6 +1,6 @@ --- // Inspired by the `Aside` component from docs.astro.build -// https://github.com/withastro/docs/blob/main/src/components/Aside.astro +// https://github.com/withastro/starlight/blob/main/packages/starlight/integrations/asides.ts interface Props { type?: 'note' | 'tip' | 'caution' | 'danger'; diff --git a/packages/create-astro/src/index.ts b/packages/create-astro/src/index.ts index 2ffdd00b7d..dd6291471a 100644 --- a/packages/create-astro/src/index.ts +++ b/packages/create-astro/src/index.ts @@ -16,9 +16,6 @@ const exit = () => process.exit(0); process.on('SIGINT', exit); process.on('SIGTERM', exit); -// Please also update the installation instructions in the docs at -// https://github.com/withastro/docs/blob/main/src/pages/en/install/auto.md -// if you make any changes to the flow or wording here. export async function main() { // Add some extra spacing from the noisy npm/pnpm init output // eslint-disable-next-line no-console diff --git a/packages/integrations/markdoc/test/fixtures/propagated-assets/src/components/Aside.astro b/packages/integrations/markdoc/test/fixtures/propagated-assets/src/components/Aside.astro index ec93314f25..be15e8c0ae 100644 --- a/packages/integrations/markdoc/test/fixtures/propagated-assets/src/components/Aside.astro +++ b/packages/integrations/markdoc/test/fixtures/propagated-assets/src/components/Aside.astro @@ -1,6 +1,6 @@ --- // Inspired by the `Aside` component from docs.astro.build -// https://github.com/withastro/docs/blob/main/src/components/Aside.astro +// https://github.com/withastro/starlight/blob/main/packages/starlight/integrations/asides.ts interface Props { type?: 'note' | 'tip' | 'caution' | 'danger'; diff --git a/packages/integrations/markdoc/test/fixtures/render-html/src/components/Aside.astro b/packages/integrations/markdoc/test/fixtures/render-html/src/components/Aside.astro index 5d92a0993c..ed7077dbd0 100644 --- a/packages/integrations/markdoc/test/fixtures/render-html/src/components/Aside.astro +++ b/packages/integrations/markdoc/test/fixtures/render-html/src/components/Aside.astro @@ -1,6 +1,6 @@ --- // Inspired by the `Aside` component from docs.astro.build -// https://github.com/withastro/docs/blob/main/src/components/Aside.astro +// https://github.com/withastro/starlight/blob/main/packages/starlight/integrations/asides.ts export interface Props { type?: 'note' | 'tip' | 'caution' | 'danger';