diff options
author | 2023-08-22 21:03:40 +0800 | |
---|---|---|
committer | 2023-08-22 21:03:40 +0800 | |
commit | a93e061cfb0779e41297f22002d6a446850acc93 (patch) | |
tree | 7596c35635e92171f224244d5c6ce1a935b56c91 | |
parent | 9751f018175aa4a0dbd48a1d1f8c48060fb02251 (diff) | |
download | astro-a93e061cfb0779e41297f22002d6a446850acc93.tar.gz astro-a93e061cfb0779e41297f22002d6a446850acc93.tar.zst astro-a93e061cfb0779e41297f22002d6a446850acc93.zip |
Fix turbolink changeset
-rw-r--r-- | .changeset/afraid-dots-whisper.md | 1 | ||||
-rw-r--r-- | .changeset/curvy-experts-jog.md | 1 | ||||
-rw-r--r-- | .changeset/pre.json | 1 | ||||
-rw-r--r-- | README.md | 1 | ||||
-rw-r--r-- | packages/astro/src/@types/astro.ts | 2 |
5 files changed, 1 insertions, 5 deletions
diff --git a/.changeset/afraid-dots-whisper.md b/.changeset/afraid-dots-whisper.md index a38150269..272a1e212 100644 --- a/.changeset/afraid-dots-whisper.md +++ b/.changeset/afraid-dots-whisper.md @@ -18,7 +18,6 @@ '@astrojs/rss': major '@astrojs/telemetry': major 'astro': major -'@astrojs/turbolinks': minor '@astrojs/alpinejs': minor '@astrojs/prefetch': minor '@astrojs/markdoc': minor diff --git a/.changeset/curvy-experts-jog.md b/.changeset/curvy-experts-jog.md index 43d04efc0..156f7eabc 100644 --- a/.changeset/curvy-experts-jog.md +++ b/.changeset/curvy-experts-jog.md @@ -20,7 +20,6 @@ '@astrojs/rss': major '@astrojs/telemetry': major 'astro': major -'@astrojs/turbolinks': minor '@astrojs/alpinejs': minor '@astrojs/prefetch': minor '@astrojs/markdoc': minor diff --git a/.changeset/pre.json b/.changeset/pre.json index 555de7354..a1cceb1e2 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -22,7 +22,6 @@ "@astrojs/solid-js": "2.2.0", "@astrojs/svelte": "3.1.0", "@astrojs/tailwind": "4.0.0", - "@astrojs/turbolinks": "0.2.2", "@astrojs/vercel": "3.7.4", "@astrojs/vue": "2.2.1", "@astrojs/internal-helpers": "0.1.1", @@ -60,7 +60,6 @@ Join us on [Discord](https://astro.build/chat) to meet other maintainers. We'll | [@astrojs/partytown](packages/integrations/partytown) | [](packages/integrations/partytown/CHANGELOG.md) | | [@astrojs/sitemap](packages/integrations/sitemap) | [](packages/integrations/sitemap/CHANGELOG.md) | | [@astrojs/tailwind](packages/integrations/tailwind) | [](packages/integrations/tailwind/CHANGELOG.md) | -| [@astrojs/turbolinks](packages/integrations/turbolinks) | [](packages/integrations/turbolinks/CHANGELOG.md) | | [@astrojs/alpinejs](packages/integrations/alpinejs) | [](packages/integrations/alpinejs/CHANGELOG.md) | | [@astrojs/mdx](packages/integrations/mdx) | [](packages/integrations/mdx/CHANGELOG.md) | | [@astrojs/prefetch](packages/integrations/prefetch) | [](packages/integrations/prefetch/CHANGELOG.md) | diff --git a/packages/astro/src/@types/astro.ts b/packages/astro/src/@types/astro.ts index 557ad1ed1..08a30dec4 100644 --- a/packages/astro/src/@types/astro.ts +++ b/packages/astro/src/@types/astro.ts @@ -1207,7 +1207,7 @@ export interface AstroUserConfig { * @name Integrations * @description * - * Extend Astro with custom integrations. Integrations are your one-stop-shop for adding framework support (like Solid.js), new features (like sitemaps), and new libraries (like Partytown and Turbolinks). + * Extend Astro with custom integrations. Integrations are your one-stop-shop for adding framework support (like Solid.js), new features (like sitemaps), and new libraries (like Partytown). * * Read our [Integrations Guide](https://docs.astro.build/en/guides/integrations-guide/) for help getting started with Astro Integrations. * |