From cca3bc934c96488b3281ad8c4792d68cde553f87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Mon, 13 Jan 2025 04:54:09 +0100 Subject: [PATCH] fix: correct more typos (#12971) --- packages/astro-rss/CHANGELOG.md | 2 +- packages/astro/CHANGELOG.md | 44 +++++++++---------- packages/astro/client.d.ts | 2 +- .../actions-blog/src/styles/global.css | 2 +- .../actions-react-19/src/styles/global.css | 2 +- .../src/actions/runtime/virtual/server.ts | 2 +- packages/astro/src/assets/build/generate.ts | 2 +- packages/astro/src/assets/build/remote.ts | 2 +- .../astro/src/core/routing/manifest/create.ts | 6 +-- packages/astro/test/core-image-svg.test.js | 2 +- .../fixtures/middleware-full-ssr/src/error.js | 2 +- .../package.json | 2 +- .../rewrite-runtime-error/package.json | 2 +- packages/create-astro/CHANGELOG.md | 2 +- packages/db/CHANGELOG.md | 2 +- .../db/src/core/cli/commands/shell/index.ts | 2 +- .../db/src/core/integration/vite-plugin-db.ts | 2 +- packages/db/src/runtime/db-client.ts | 4 +- packages/integrations/mdx/CHANGELOG.md | 2 +- packages/integrations/mdx/src/README.md | 2 +- packages/integrations/preact/CHANGELOG.md | 2 +- packages/integrations/react/CHANGELOG.md | 2 +- .../integrations/sitemap/test/config.test.js | 4 +- packages/integrations/solid/CHANGELOG.md | 2 +- packages/markdown/remark/CHANGELOG.md | 4 +- packages/markdown/remark/test/shiki.test.js | 2 +- 26 files changed, 52 insertions(+), 52 deletions(-) diff --git a/packages/astro-rss/CHANGELOG.md b/packages/astro-rss/CHANGELOG.md index ac4aaafdd3..602c893b4c 100644 --- a/packages/astro-rss/CHANGELOG.md +++ b/packages/astro-rss/CHANGELOG.md @@ -176,7 +176,7 @@ ### Patch Changes -- [#7066](https://github.com/withastro/astro/pull/7066) [`a37e67b52`](https://github.com/withastro/astro/commit/a37e67b520dc35dbf40313c77490a97446de2f74) Thanks [@TheOtterlord](https://github.com/TheOtterlord)! - Fix pubDate schema tranformation +- [#7066](https://github.com/withastro/astro/pull/7066) [`a37e67b52`](https://github.com/withastro/astro/commit/a37e67b520dc35dbf40313c77490a97446de2f74) Thanks [@TheOtterlord](https://github.com/TheOtterlord)! - Fix pubDate schema transformation - [#7104](https://github.com/withastro/astro/pull/7104) [`826e02890`](https://github.com/withastro/astro/commit/826e0289005f645b902375b98d5549c6a95ccafa) Thanks [@bluwy](https://github.com/bluwy)! - Specify `"files"` field to only publish necessary files diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 4dabf3bfee..ade0b833b4 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -357,7 +357,7 @@ Both of these options can be overridden by setting your own values to the corresponding settings in your `tsconfig.json` file. -- [#11861](https://github.com/withastro/astro/pull/11861) [`3ab3b4e`](https://github.com/withastro/astro/commit/3ab3b4efbcdd2aabea5f949deedf51a5acefae59) Thanks [@bluwy](https://github.com/bluwy)! - Cleans up Astro-specfic metadata attached to `vfile.data` in Remark and Rehype plugins. Previously, the metadata was attached in different locations with inconsistent names. The metadata is now renamed as below: +- [#11861](https://github.com/withastro/astro/pull/11861) [`3ab3b4e`](https://github.com/withastro/astro/commit/3ab3b4efbcdd2aabea5f949deedf51a5acefae59) Thanks [@bluwy](https://github.com/bluwy)! - Cleans up Astro-specific metadata attached to `vfile.data` in Remark and Rehype plugins. Previously, the metadata was attached in different locations with inconsistent names. The metadata is now renamed as below: - `vfile.data.__astroHeadings` -> `vfile.data.astro.headings` - `vfile.data.imagePaths` -> `vfile.data.astro.imagePaths` @@ -1077,7 +1077,7 @@ { "dogs": [{}], "cats": [{}] } ``` - You can seperate these collections by passing a custom `parser` to the `file()` loader like so: + You can separate these collections by passing a custom `parser` to the `file()` loader like so: ```typescript const dogs = defineCollection({ @@ -2114,7 +2114,7 @@ { "dogs": [{}], "cats": [{}] } ``` - You can seperate these collections by passing a custom `parser` to the `file()` loader like so: + You can separate these collections by passing a custom `parser` to the `file()` loader like so: ```typescript const dogs = defineCollection({ @@ -2681,7 +2681,7 @@ ### Major Changes -- [#11861](https://github.com/withastro/astro/pull/11861) [`3ab3b4e`](https://github.com/withastro/astro/commit/3ab3b4efbcdd2aabea5f949deedf51a5acefae59) Thanks [@bluwy](https://github.com/bluwy)! - Cleans up Astro-specfic metadata attached to `vfile.data` in Remark and Rehype plugins. Previously, the metadata was attached in different locations with inconsistent names. The metadata is now renamed as below: +- [#11861](https://github.com/withastro/astro/pull/11861) [`3ab3b4e`](https://github.com/withastro/astro/commit/3ab3b4efbcdd2aabea5f949deedf51a5acefae59) Thanks [@bluwy](https://github.com/bluwy)! - Cleans up Astro-specific metadata attached to `vfile.data` in Remark and Rehype plugins. Previously, the metadata was attached in different locations with inconsistent names. The metadata is now renamed as below: - `vfile.data.__astroHeadings` -> `vfile.data.astro.headings` - `vfile.data.imagePaths` -> `vfile.data.astro.imagePaths` @@ -3248,7 +3248,7 @@ ``` ```` -- [#11984](https://github.com/withastro/astro/pull/11984) [`3ac2263`](https://github.com/withastro/astro/commit/3ac2263ff6070136bec9cffb863c38bcc31ccdfe) Thanks [@chaegumi](https://github.com/chaegumi)! - Adds a new `build.concurreny` configuration option to specify the number of pages to build in parallel +- [#11984](https://github.com/withastro/astro/pull/11984) [`3ac2263`](https://github.com/withastro/astro/commit/3ac2263ff6070136bec9cffb863c38bcc31ccdfe) Thanks [@chaegumi](https://github.com/chaegumi)! - Adds a new `build.concurrency` configuration option to specify the number of pages to build in parallel **In most cases, you should not change the default value of `1`.** @@ -3827,7 +3827,7 @@ This allows you to provide a value for [Shiki's `meta` attribute](https://shiki.style/guide/transformers#meta) to pass options to transformers. - The following example passes an option to highlight lines 1 and 3 to Shiki's `tranformerMetaHighlight`: + The following example passes an option to highlight lines 1 and 3 to Shiki's `transformerMetaHighlight`: ```astro --- @@ -4454,7 +4454,7 @@ The `server:defer` directive can be used on any Astro component in a project using `hybrid` or `server` mode with an adapter. There are no special APIs needed inside of the island. - Enable server islands by adding the experimental flag to your Astro config with an appropriate `output` mode and adatper: + Enable server islands by adding the experimental flag to your Astro config with an appropriate `output` mode and adapter: ```js import { defineConfig } from 'astro/config'; @@ -7530,7 +7530,7 @@ - [#9179](https://github.com/withastro/astro/pull/9179) [`3f28336d9`](https://github.com/withastro/astro/commit/3f28336d9a52d7e4364d455ee3128d14d10a078a) Thanks [@lilnasy](https://github.com/lilnasy)! - Fixes an issue where the presence of a slot in a page led to an error. -- [#9219](https://github.com/withastro/astro/pull/9219) [`067a65f5b`](https://github.com/withastro/astro/commit/067a65f5b4d163bf1944cf47e6bf891f0b93553f) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Fix edge case where `