summaryrefslogtreecommitdiff
path: root/.changeset/wild-socks-drive.md
diff options
context:
space:
mode:
authorGravatar Fred K. Bot <108291165+fredkbot@users.noreply.github.com> 2022-07-26 06:58:38 -0700
committerGravatar GitHub <noreply@github.com> 2022-07-26 09:58:38 -0400
commitd790eabd986decc380088e52a4dcbff246ee736f (patch)
treef4fb19e33f32cea242349b2813551bc417f00fe9 /.changeset/wild-socks-drive.md
parentc7e117ce32592c9c29d24583baa10009e620bcc4 (diff)
downloadastro-d790eabd986decc380088e52a4dcbff246ee736f.tar.gz
astro-d790eabd986decc380088e52a4dcbff246ee736f.tar.zst
astro-d790eabd986decc380088e52a4dcbff246ee736f.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to '.changeset/wild-socks-drive.md')
-rw-r--r--.changeset/wild-socks-drive.md22
1 files changed, 0 insertions, 22 deletions
diff --git a/.changeset/wild-socks-drive.md b/.changeset/wild-socks-drive.md
deleted file mode 100644
index c69216ca3..000000000
--- a/.changeset/wild-socks-drive.md
+++ /dev/null
@@ -1,22 +0,0 @@
----
-'astro': minor
-'@astrojs/markdown-component': minor
----
-
-Move the Markdown component to its own package
-
-This change moves the Markdown component into its own package where it will be maintained separately. All that needs to change from a user's perspective is the import statement:
-
-```astro
----
-import { Markdown } from 'astro/components';
----
-```
-
-Becomes:
-
-```astro
----
-import Markdown from '@astrojs/markdown-component';
----
-```