diff --git a/.changeset/brown-numbers-prove.md b/.changeset/brown-numbers-prove.md deleted file mode 100644 index 96db75af0..000000000 --- a/.changeset/brown-numbers-prove.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Displays a new config error if `outDir` is placed within `publicDir`. diff --git a/.changeset/many-ears-drum.md b/.changeset/many-ears-drum.md deleted file mode 100644 index f728408a0..000000000 --- a/.changeset/many-ears-drum.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Fix missing type for `imageConfig` export from `astro:assets` diff --git a/.changeset/rich-tigers-march.md b/.changeset/rich-tigers-march.md deleted file mode 100644 index fb698048f..000000000 --- a/.changeset/rich-tigers-march.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/node': patch ---- - -Fix an issue where `express` couldn't use the `handler` in `middleware` mode. diff --git a/.changeset/silent-snakes-shave.md b/.changeset/silent-snakes-shave.md new file mode 100644 index 000000000..3f8c8c3ee --- /dev/null +++ b/.changeset/silent-snakes-shave.md @@ -0,0 +1,5 @@ +--- +'@astrojs/cloudflare': patch +--- + +Improve documentation and export the types needed to type the `runtime` object. diff --git a/.changeset/unlucky-cougars-heal.md b/.changeset/unlucky-cougars-heal.md deleted file mode 100644 index a6579499e..000000000 --- a/.changeset/unlucky-cougars-heal.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Make typing of `defineCollection` more permissive to support advanced union and intersection types diff --git a/examples/portfolio/src/components/Hero.astro b/examples/portfolio/src/components/Hero.astro index 21b5ed1bf..30460420a 100644 --- a/examples/portfolio/src/components/Hero.astro +++ b/examples/portfolio/src/components/Hero.astro @@ -8,13 +8,13 @@ interface Props { const { align = 'center', tagline, title } = Astro.props; --- -
+

{title}

{tagline &&

{tagline}

}
-
+