Bump astro from 4.2.6 to 4.3.2 (#29)

Bumps
[astro](https://github.com/withastro/astro/tree/HEAD/packages/astro)
from 4.2.6 to 4.3.2.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/withastro/astro/releases">astro's
releases</a>.</em></p>
<blockquote>
<h2>astro@4.3.2</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9932">#9932</a>
<a
href="9f0d89fa7e"><code>9f0d89fa7e9e7c08c8600b0c49c2cce7489a7582</code></a>
Thanks <a
href="https://github.com/ematipico"><code>@​ematipico</code></a>! -
Fixes a case where a warning was logged even when the feature
<code>i18nDomains</code> wasn't enabled</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9907">#9907</a>
<a
href="6c894af5ab"><code>6c894af5ab79f290f4ff7feb68617a66e91febc1</code></a>
Thanks <a href="https://github.com/ktym4a"><code>@​ktym4a</code></a>! -
Load 404.html on all non-existent paths on astro preview.</p>
</li>
</ul>
<h2>astro@4.3.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9841">#9841</a>
<a
href="27ea080e24"><code>27ea080e24e2c5cdc59b63b1dfe0a83a0c696597</code></a>
Thanks <a
href="https://github.com/kristianbinau"><code>@​kristianbinau</code></a>!
- Makes the warning clearer when having a custom <code>base</code> and
requesting a public URL without it</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9888">#9888</a>
<a
href="9d2fdb293d"><code>9d2fdb293d6a7323e10126cebad18ef9a2ea2800</code></a>
Thanks <a
href="https://github.com/natemoo-re"><code>@​natemoo-re</code></a>! -
Improves error handling logic for the <code>astro sync</code>
command.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9918">#9918</a>
<a
href="d52529e094"><code>d52529e09450c84933dd15d6481edb32269f537b</code></a>
Thanks <a
href="https://github.com/LarryIVC"><code>@​LarryIVC</code></a>! - Adds
the <code>name</code> attribute to the <code>&lt;details&gt;</code> tag
type</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9938">#9938</a>
<a
href="1568afb78a"><code>1568afb78a163db63a4cde146dec87785a83db1d</code></a>
Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>!
- Fixes a regression where middleware did not run for prerendered pages
and endpoints.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9931">#9931</a>
<a
href="4467441896"><code>44674418965d658733d3602668a9354e18f8ef89</code></a>
Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>!
- Fixes a regression where a response created with
<code>Response.redirect</code> or containing <code>null</code> as the
body never completed in node-based adapters.</p>
</li>
</ul>
<h2>astro@4.3.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9839">#9839</a>
<a
href="58f9e393a1"><code>58f9e393a188702eef5329e41deff3dcb65a3230</code></a>
Thanks <a
href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! -
Adds a new <code>ComponentProps</code> type export from
<code>astro/types</code> to get the props type of an Astro
component.</p>
<pre lang="astro"><code>---
import type { ComponentProps } from 'astro/types';
import { Button } from './Button.astro';
<h2>type myButtonProps = ComponentProps&lt;typeof Button&gt;;</h2>
<p></code></pre></p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9159">#9159</a>
<a
href="7d937c1589"><code>7d937c158959e76443a02f740b10e251d14dbd8c</code></a>
Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! -
Adds CLI shortcuts as an easter egg for the dev server:</p>
<ul>
<li><code>o + enter</code>: opens the site in your browser</li>
<li><code>q + enter</code>: quits the dev server</li>
<li><code>h + enter</code>: prints all available shortcuts</li>
</ul>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9764">#9764</a>
<a
href="fad4f64aa1"><code>fad4f64aa149086feda2d1f3a0b655767034f1a8</code></a>
Thanks <a
href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Adds a
new <code>build.format</code> configuration option:
<code>'preserve'</code>. This option will preserve your source structure
in the final build.</p>
<p>The existing configuration options, <code>file</code> and
<code>directory</code>, either build all of your HTML pages as files
matching the route name (e.g. <code>/about.html</code>) or build all
your files as <code>index.html</code> within a nested directory
structure (e.g. <code>/about/index.html</code>), respectively. It was
not previously possible to control the HTML file built on a per-file
basis.</p>
<p>One limitation of <code>build.format: 'file'</code> is that it cannot
create <code>index.html</code> files for any individual routes (other
than the base path of <code>/</code>) while otherwise building named
files. Creating explicit index pages within your file structure still
generates a file named for the page route (e.g.
<code>src/pages/about/index.astro</code> builds
<code>/about.html</code>) when using the <code>file</code> configuration
option.</p>
<p>Rather than make a breaking change to allow <code>build.format:
'file'</code> to be more flexible, we decided to create a new
<code>build.format: 'preserve'</code>.</p>
<p>The new format will preserve how the filesystem is structured and
make sure that is mirrored over to production. Using this option:</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/withastro/astro/blob/main/packages/astro/CHANGELOG.md">astro's
changelog</a>.</em></p>
<blockquote>
<h2>4.3.2</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9932">#9932</a>
<a
href="9f0d89fa7e"><code>9f0d89fa7e9e7c08c8600b0c49c2cce7489a7582</code></a>
Thanks <a
href="https://github.com/ematipico"><code>@​ematipico</code></a>! -
Fixes a case where a warning was logged even when the feature
<code>i18nDomains</code> wasn't enabled</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9907">#9907</a>
<a
href="6c894af5ab"><code>6c894af5ab79f290f4ff7feb68617a66e91febc1</code></a>
Thanks <a href="https://github.com/ktym4a"><code>@​ktym4a</code></a>! -
Load 404.html on all non-existent paths on astro preview.</p>
</li>
</ul>
<h2>4.3.1</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9841">#9841</a>
<a
href="27ea080e24"><code>27ea080e24e2c5cdc59b63b1dfe0a83a0c696597</code></a>
Thanks <a
href="https://github.com/kristianbinau"><code>@​kristianbinau</code></a>!
- Makes the warning clearer when having a custom <code>base</code> and
requesting a public URL without it</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9888">#9888</a>
<a
href="9d2fdb293d"><code>9d2fdb293d6a7323e10126cebad18ef9a2ea2800</code></a>
Thanks <a
href="https://github.com/natemoo-re"><code>@​natemoo-re</code></a>! -
Improves error handling logic for the <code>astro sync</code>
command.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9918">#9918</a>
<a
href="d52529e094"><code>d52529e09450c84933dd15d6481edb32269f537b</code></a>
Thanks <a
href="https://github.com/LarryIVC"><code>@​LarryIVC</code></a>! - Adds
the <code>name</code> attribute to the <code>&lt;details&gt;</code> tag
type</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9938">#9938</a>
<a
href="1568afb78a"><code>1568afb78a163db63a4cde146dec87785a83db1d</code></a>
Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>!
- Fixes a regression where middleware did not run for prerendered pages
and endpoints.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9931">#9931</a>
<a
href="4467441896"><code>44674418965d658733d3602668a9354e18f8ef89</code></a>
Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>!
- Fixes a regression where a response created with
<code>Response.redirect</code> or containing <code>null</code> as the
body never completed in node-based adapters.</p>
</li>
</ul>
<h2>4.3.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9839">#9839</a>
<a
href="58f9e393a1"><code>58f9e393a188702eef5329e41deff3dcb65a3230</code></a>
Thanks <a
href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! -
Adds a new <code>ComponentProps</code> type export from
<code>astro/types</code> to get the props type of an Astro
component.</p>
<pre lang="astro"><code>---
import type { ComponentProps } from 'astro/types';
import Button from './Button.astro';
<h2>type myButtonProps = ComponentProps&lt;typeof Button&gt;;</h2>
<p></code></pre></p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9159">#9159</a>
<a
href="7d937c1589"><code>7d937c158959e76443a02f740b10e251d14dbd8c</code></a>
Thanks <a href="https://github.com/bluwy"><code>@​bluwy</code></a>! -
Adds CLI shortcuts as an easter egg for the dev server:</p>
<ul>
<li><code>o + enter</code>: opens the site in your browser</li>
<li><code>q + enter</code>: quits the dev server</li>
<li><code>h + enter</code>: prints all available shortcuts</li>
</ul>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9764">#9764</a>
<a
href="fad4f64aa1"><code>fad4f64aa149086feda2d1f3a0b655767034f1a8</code></a>
Thanks <a
href="https://github.com/matthewp"><code>@​matthewp</code></a>! - Adds a
new <code>build.format</code> configuration option:
<code>'preserve'</code>. This option will preserve your source structure
in the final build.</p>
<p>The existing configuration options, <code>file</code> and
<code>directory</code>, either build all of your HTML pages as files
matching the route name (e.g. <code>/about.html</code>) or build all
your files as <code>index.html</code> within a nested directory
structure (e.g. <code>/about/index.html</code>), respectively. It was
not previously possible to control the HTML file built on a per-file
basis.</p>
<p>One limitation of <code>build.format: 'file'</code> is that it cannot
create <code>index.html</code> files for any individual routes (other
than the base path of <code>/</code>) while otherwise building named
files. Creating explicit index pages within your file structure still
generates a file named for the page route (e.g.
<code>src/pages/about/index.astro</code> builds
<code>/about.html</code>) when using the <code>file</code> configuration
option.</p>
<p>Rather than make a breaking change to allow <code>build.format:
'file'</code> to be more flexible, we decided to create a new
<code>build.format: 'preserve'</code>.</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="57ab98f531"><code>57ab98f</code></a>
[ci] release (<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9948">#9948</a>)</li>
<li><a
href="6c894af5ab"><code>6c894af</code></a>
Fix: 404.html load correctly on preview (<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9907">#9907</a>)</li>
<li><a
href="cd67dd0a4f"><code>cd67dd0</code></a>
Add new test cases for non-UTF-8 and space file names (<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9947">#9947</a>)</li>
<li><a
href="9f0d89fa7e"><code>9f0d89f</code></a>
fix: don't log warning if <code>i18nDomains</code> isn't enabled (<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9932">#9932</a>)</li>
<li><a
href="2ac371404d"><code>2ac3714</code></a>
[ci] release (<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9926">#9926</a>)</li>
<li><a
href="b176825b34"><code>b176825</code></a>
fix: route matching for encoded pathnames (<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9934">#9934</a>)</li>
<li><a
href="9d2fdb293d"><code>9d2fdb2</code></a>
Improve <code>astro sync</code> error handling (<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9888">#9888</a>)</li>
<li><a
href="756f9595e7"><code>756f959</code></a>
[ci] format</li>
<li><a
href="1568afb78a"><code>1568afb</code></a>
fix(middleware): load while retrieving ssr manifest for prerendering (<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/9938">#9938</a>)</li>
<li><a
href="055bd27d9d"><code>055bd27</code></a>
[ci] format</li>
<li>Additional commits viewable in <a
href="https://github.com/withastro/astro/commits/astro@4.3.2/packages/astro">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=astro&package-manager=npm_and_yarn&previous-version=4.2.6&new-version=4.3.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>
This commit is contained in:
Adam Matthiesen 2024-02-05 05:02:01 -08:00 committed by GitHub
commit 6f73806a4a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 137 additions and 122 deletions

View File

@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^4.2.8",
"astro": "^4.3.2",
"@matthiesenxyz/astro-ghostcms": "3.1.8",
"@matthiesenxyz/astro-ghostcms-catppuccin": "0.0.3",
"@astrojs/tailwind": "^5.1.0",

View File

@ -10,7 +10,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^4.2.6",
"astro": "^4.3.2",
"@matthiesenxyz/astro-ghostcms": "3.1.6",
"@matthiesenxyz/astro-ghostcms-theme-default": "0.1.8"
},

View File

@ -11,7 +11,7 @@
"astro": "astro"
},
"dependencies": {
"astro": "^4.2.8",
"astro": "^4.3.2",
"@matthiesenxyz/astro-ghostcms-theme-default": "workspace:*",
"@matthiesenxyz/astro-ghostcms-catppuccin": "workspace:*",
"@matthiesenxyz/astro-ghostcms": "workspace:*",

View File

@ -25,7 +25,7 @@ importers:
dependencies:
'@astrojs/tailwind':
specifier: ^5.1.0
version: 5.1.0(astro@4.2.8)(tailwindcss@3.4.1)
version: 5.1.0(astro@4.3.2)(tailwindcss@3.4.1)
'@matthiesenxyz/astro-ghostcms':
specifier: 3.1.8
version: link:../packages/astro-ghostcms
@ -33,8 +33,8 @@ importers:
specifier: 0.0.3
version: link:../packages/astro-ghostcms-catppuccin
astro:
specifier: ^4.2.8
version: 4.2.8(@types/node@20.11.16)(typescript@5.3.3)
specifier: ^4.3.2
version: 4.3.2(typescript@5.3.3)
tailwindcss:
specifier: ^3.3.5
version: 3.4.1
@ -50,13 +50,13 @@ importers:
dependencies:
'@matthiesenxyz/astro-ghostcms':
specifier: 3.1.6
version: 3.1.6(astro@4.2.6)(typescript@5.3.3)
version: 3.1.6(astro@4.3.2)(typescript@5.3.3)
'@matthiesenxyz/astro-ghostcms-theme-default':
specifier: 0.1.8
version: 0.1.8(astro@4.2.6)(typescript@5.3.3)
version: 0.1.8(astro@4.3.2)(typescript@5.3.3)
astro:
specifier: ^4.2.6
version: 4.2.6(typescript@5.3.3)
specifier: ^4.3.2
version: 4.3.2(typescript@5.3.3)
devDependencies:
'@astrojs/check':
specifier: ^0.4.1
@ -275,7 +275,7 @@ importers:
dependencies:
'@astrojs/tailwind':
specifier: ^5.1.0
version: 5.1.0(astro@4.2.8)(tailwindcss@3.4.1)
version: 5.1.0(astro@4.3.2)(tailwindcss@3.4.1)
'@matthiesenxyz/astro-ghostcms':
specifier: workspace:*
version: link:../packages/astro-ghostcms
@ -286,8 +286,8 @@ importers:
specifier: workspace:*
version: link:../packages/astro-ghostcms-theme-default
astro:
specifier: ^4.2.8
version: 4.2.8(@types/node@20.11.16)(typescript@5.3.3)
specifier: ^4.3.2
version: 4.3.2(typescript@5.3.3)
tailwindcss:
specifier: ^3.3.5
version: 3.4.1
@ -303,10 +303,10 @@ importers:
version: 0.4.1(prettier-plugin-astro@0.13.0)(prettier@3.2.4)(typescript@5.3.3)
'@astrojs/starlight':
specifier: ^0.17.2
version: 0.17.2(astro@4.2.8)
version: 0.17.2(astro@4.3.2)
astro:
specifier: ^4.2.8
version: 4.2.8(sass@1.70.0)(typescript@5.3.3)
specifier: ^4.3.2
version: 4.3.2(sass@1.70.0)(typescript@5.3.3)
astro-font:
specifier: ^0.0.77
version: 0.0.77
@ -443,7 +443,7 @@ packages:
- supports-color
dev: false
/@astrojs/mdx@2.0.6(astro@4.2.8):
/@astrojs/mdx@2.0.6(astro@4.3.2):
resolution: {integrity: sha512-PY6FYN5TN8dsRFSzcPIt5ofJ/w+v+5GtUUyDYbznu8zmFWlL9TkTLJ9U1zaQ3s2Qh6r1cAeLdEYjW/hW+vZzlw==}
engines: {node: '>=18.14.1'}
peerDependencies:
@ -452,7 +452,7 @@ packages:
'@astrojs/markdown-remark': 4.2.0
'@mdx-js/mdx': 3.0.0
acorn: 8.11.3
astro: 4.2.8(sass@1.70.0)(typescript@5.3.3)
astro: 4.3.2(sass@1.70.0)(typescript@5.3.3)
es-module-lexer: 1.4.1
estree-util-visit: 2.0.0
github-slugger: 2.0.0
@ -490,18 +490,18 @@ packages:
zod: 3.22.4
dev: false
/@astrojs/starlight@0.17.2(astro@4.2.8):
/@astrojs/starlight@0.17.2(astro@4.3.2):
resolution: {integrity: sha512-2Zme8DobPaocbALX6LqkR8thDxa0RK3qikNccvwzowuYjGMzGvldt524RimFaVB0zTNrtrw2Sp1jamF1KJae8w==}
peerDependencies:
astro: ^4.0.0
dependencies:
'@astrojs/mdx': 2.0.6(astro@4.2.8)
'@astrojs/mdx': 2.0.6(astro@4.3.2)
'@astrojs/sitemap': 3.0.5
'@pagefind/default-ui': 1.0.4
'@types/hast': 3.0.3
'@types/mdast': 4.0.3
astro: 4.2.8(sass@1.70.0)(typescript@5.3.3)
astro-expressive-code: 0.32.2(astro@4.2.8)
astro: 4.3.2(sass@1.70.0)(typescript@5.3.3)
astro-expressive-code: 0.32.2(astro@4.3.2)
bcp-47: 2.1.0
hast-util-select: 6.0.2
hastscript: 8.0.0
@ -532,6 +532,21 @@ packages:
- ts-node
dev: false
/@astrojs/tailwind@5.1.0(astro@4.3.2)(tailwindcss@3.4.1):
resolution: {integrity: sha512-BJoCDKuWhU9FT2qYg+fr6Nfb3qP4ShtyjXGHKA/4mHN94z7BGcmauQK23iy+YH5qWvTnhqkd6mQPQ1yTZTe9Ig==}
peerDependencies:
astro: ^3.0.0 || ^4.0.0
tailwindcss: ^3.0.24
dependencies:
astro: 4.3.2(typescript@5.3.3)
autoprefixer: 10.4.17(postcss@8.4.33)
postcss: 8.4.33
postcss-load-config: 4.0.2(postcss@8.4.33)
tailwindcss: 3.4.1
transitivePeerDependencies:
- ts-node
dev: false
/@astrojs/telemetry@3.0.4:
resolution: {integrity: sha512-A+0c7k/Xy293xx6odsYZuXiaHO0PL+bnDoXOc47sGDF5ffIKdKQGRPFl2NMlCF4L0NqN4Ynbgnaip+pPF0s7pQ==}
engines: {node: '>=18.14.1'}
@ -1633,13 +1648,13 @@ packages:
read-yaml-file: 1.1.0
dev: true
/@matthiesenxyz/astro-ghostcms-theme-default@0.1.8(astro@4.2.6)(typescript@5.3.3):
/@matthiesenxyz/astro-ghostcms-theme-default@0.1.8(astro@4.3.2)(typescript@5.3.3):
resolution: {integrity: sha512-zrph67RDn2Rfh2OlGWaRMKOkj40jbavzDDJqFDJRNi3sBBTGvsCJJnQbAJJRpm9JSRZazhV3xx/yqOwQ+bA6Jg==}
peerDependencies:
astro: ^4.2.1
dependencies:
'@matthiesenxyz/astro-ghostcms': 3.1.8(astro@4.2.6)(sass@1.70.0)(typescript@5.3.3)
astro: 4.2.6(typescript@5.3.3)
'@matthiesenxyz/astro-ghostcms': 3.1.8(astro@4.3.2)(sass@1.70.0)(typescript@5.3.3)
astro: 4.3.2(typescript@5.3.3)
astro-font: 0.0.77
sass: 1.70.0
transitivePeerDependencies:
@ -1653,13 +1668,13 @@ packages:
- typescript
dev: false
/@matthiesenxyz/astro-ghostcms-theme-default@0.1.9(astro@4.2.6)(typescript@5.3.3):
/@matthiesenxyz/astro-ghostcms-theme-default@0.1.9(astro@4.3.2)(typescript@5.3.3):
resolution: {integrity: sha512-VStl8TMS0wFZtGwVys8qUScAddGLS9FPjnAWppu/AWJMgD8wCRtiUZ24MB34LMWjkiP8ZtZlQVS75pA13ZK3Mg==}
peerDependencies:
astro: ^4.2.1
dependencies:
'@matthiesenxyz/astro-ghostcms': 3.1.8(astro@4.2.6)(sass@1.70.0)(typescript@5.3.3)
astro: 4.2.6(typescript@5.3.3)
'@matthiesenxyz/astro-ghostcms': 3.1.8(astro@4.3.2)(sass@1.70.0)(typescript@5.3.3)
astro: 4.3.2(typescript@5.3.3)
astro-font: 0.0.77
sass: 1.70.0
transitivePeerDependencies:
@ -1673,17 +1688,17 @@ packages:
- typescript
dev: false
/@matthiesenxyz/astro-ghostcms@3.1.6(astro@4.2.6)(typescript@5.3.3):
/@matthiesenxyz/astro-ghostcms@3.1.6(astro@4.3.2)(typescript@5.3.3):
resolution: {integrity: sha512-2JN7ctAGJLHTyoRomr1yecJ1ikJVI+yl09ROkt1nSRF0pagZuqkVYbaQnzx/MMVdiqQFdtsVJaLQVwq0Y2NdSA==}
peerDependencies:
astro: ^4.2.6
dependencies:
'@astrojs/rss': 4.0.4
'@astrojs/sitemap': 3.0.5
'@matthiesenxyz/astro-ghostcms-theme-default': 0.1.9(astro@4.2.6)(typescript@5.3.3)
'@matthiesenxyz/astro-ghostcms-theme-default': 0.1.9(astro@4.3.2)(typescript@5.3.3)
'@resvg/resvg-js': 2.6.0
'@ts-ghost/core-api': 5.1.2
astro: 4.2.6(typescript@5.3.3)
astro: 4.3.2(typescript@5.3.3)
astro-robots-txt: 1.0.0
satori: 0.10.13
satori-html: 0.3.2
@ -1703,17 +1718,17 @@ packages:
- typescript
dev: false
/@matthiesenxyz/astro-ghostcms@3.1.8(astro@4.2.6)(sass@1.70.0)(typescript@5.3.3):
/@matthiesenxyz/astro-ghostcms@3.1.8(astro@4.3.2)(sass@1.70.0)(typescript@5.3.3):
resolution: {integrity: sha512-pJt3WfTlUSr0cF+qcvouBKhpkNtx/uZxixUWVPHst9w4t/hBnMIzuLhTUPC8uBZboZ/qsCRO/3TLWDXPAeNj6g==}
peerDependencies:
astro: ^4.2.6
dependencies:
'@astrojs/rss': 4.0.4
'@astrojs/sitemap': 3.0.5
'@matthiesenxyz/astro-ghostcms-theme-default': 0.1.9(astro@4.2.6)(typescript@5.3.3)
'@matthiesenxyz/astro-ghostcms-theme-default': 0.1.9(astro@4.3.2)(typescript@5.3.3)
'@resvg/resvg-js': 2.6.0
'@ts-ghost/core-api': 5.1.2
astro: 4.2.6(typescript@5.3.3)
astro: 4.3.2(typescript@5.3.3)
astro-robots-txt: 1.0.0
satori: 0.10.13
satori-html: 0.3.2
@ -2709,12 +2724,12 @@ packages:
- supports-color
dev: true
/astro-expressive-code@0.32.2(astro@4.2.8):
/astro-expressive-code@0.32.2(astro@4.3.2):
resolution: {integrity: sha512-uJbgSCl9F9NGjdfTmBHci5Ws0/zMUNk9dWfOl6rvYaOL6NZha+NNjnmB3Aza7GnxP+NvQt3RV8M2vpcZnaudSw==}
peerDependencies:
astro: ^3.3.0 || ^4.0.0-beta
dependencies:
astro: 4.2.8(sass@1.70.0)(typescript@5.3.3)
astro: 4.3.2(sass@1.70.0)(typescript@5.3.3)
hast-util-to-html: 8.0.4
remark-expressive-code: 0.32.2
dev: false
@ -2820,89 +2835,6 @@ packages:
- typescript
dev: false
/astro@4.2.6(typescript@5.3.3):
resolution: {integrity: sha512-k5i8pEI2r45JTkoE0I4JyhOH/dZFpjUA4AONbRd9Gr1LtnGOhKHDftiYOrRLUGx91q7BzoW3DOk+h4yZM4yC3g==}
engines: {node: '>=18.14.1', npm: '>=6.14.0'}
hasBin: true
dependencies:
'@astrojs/compiler': 2.5.0
'@astrojs/internal-helpers': 0.2.1
'@astrojs/markdown-remark': 4.2.0
'@astrojs/telemetry': 3.0.4
'@babel/core': 7.23.7
'@babel/generator': 7.23.6
'@babel/parser': 7.23.6
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
'@babel/traverse': 7.23.7
'@babel/types': 7.23.6
'@types/babel__core': 7.20.5
acorn: 8.11.3
aria-query: 5.3.0
axobject-query: 4.0.0
boxen: 7.1.1
chokidar: 3.5.3
ci-info: 4.0.0
clsx: 2.1.0
common-ancestor-path: 1.0.1
cookie: 0.6.0
cssesc: 3.0.0
debug: 4.3.4
deterministic-object-hash: 2.0.2
devalue: 4.3.2
diff: 5.1.0
dlv: 1.1.3
dset: 3.1.3
es-module-lexer: 1.4.1
esbuild: 0.19.12
estree-walker: 3.0.3
execa: 8.0.1
fast-glob: 3.3.2
flattie: 1.1.0
github-slugger: 2.0.0
gray-matter: 4.0.3
html-escaper: 3.0.3
http-cache-semantics: 4.1.1
js-yaml: 4.1.0
kleur: 4.1.5
magic-string: 0.30.5
mdast-util-to-hast: 13.0.2
mime: 3.0.0
ora: 7.0.1
p-limit: 5.0.0
p-queue: 8.0.1
path-to-regexp: 6.2.1
preferred-pm: 3.1.2
probe-image-size: 7.2.3
prompts: 2.4.2
rehype: 13.0.1
resolve: 1.22.8
semver: 7.5.4
server-destroy: 1.0.1
shikiji: 0.9.19
string-width: 7.1.0
strip-ansi: 7.1.0
tsconfck: 3.0.1(typescript@5.3.3)
unist-util-visit: 5.0.0
vfile: 6.0.1
vite: 5.0.12(@types/node@20.11.16)
vitefu: 0.2.5(vite@5.0.12)
which-pm: 2.1.1
yargs-parser: 21.1.1
zod: 3.22.4
optionalDependencies:
sharp: 0.32.6
transitivePeerDependencies:
- '@types/node'
- less
- lightningcss
- sass
- stylus
- sugarss
- supports-color
- terser
- typescript
dev: false
/astro@4.2.8(@types/node@20.11.16)(typescript@5.3.3):
resolution: {integrity: sha512-h78IAdSEPMo1bvR40HECQYpnMPfDnk9WxRNJ1+Hw5szk4k5IMUw3nG153nErJABRnaxb6WLv7dtS4tukzJz0mw==}
engines: {node: '>=18.14.1', npm: '>=6.14.0'}
@ -2986,8 +2918,8 @@ packages:
- typescript
dev: false
/astro@4.2.8(sass@1.70.0)(typescript@5.3.3):
resolution: {integrity: sha512-h78IAdSEPMo1bvR40HECQYpnMPfDnk9WxRNJ1+Hw5szk4k5IMUw3nG153nErJABRnaxb6WLv7dtS4tukzJz0mw==}
/astro@4.3.2(sass@1.70.0)(typescript@5.3.3):
resolution: {integrity: sha512-SJotHzKG/I32ruYWItMRJjtmNQh14mVS7kahu3XfYyxvo6nx08PGJBTSPbqPrW1sjeQPHwcpVDFx3yMMK2kaxQ==}
engines: {node: '>=18.14.1', npm: '>=6.14.0'}
hasBin: true
dependencies:
@ -3069,6 +3001,89 @@ packages:
- typescript
dev: false
/astro@4.3.2(typescript@5.3.3):
resolution: {integrity: sha512-SJotHzKG/I32ruYWItMRJjtmNQh14mVS7kahu3XfYyxvo6nx08PGJBTSPbqPrW1sjeQPHwcpVDFx3yMMK2kaxQ==}
engines: {node: '>=18.14.1', npm: '>=6.14.0'}
hasBin: true
dependencies:
'@astrojs/compiler': 2.5.0
'@astrojs/internal-helpers': 0.2.1
'@astrojs/markdown-remark': 4.2.1
'@astrojs/telemetry': 3.0.4
'@babel/core': 7.23.7
'@babel/generator': 7.23.6
'@babel/parser': 7.23.6
'@babel/plugin-transform-react-jsx': 7.23.4(@babel/core@7.23.7)
'@babel/traverse': 7.23.7
'@babel/types': 7.23.6
'@types/babel__core': 7.20.5
acorn: 8.11.3
aria-query: 5.3.0
axobject-query: 4.0.0
boxen: 7.1.1
chokidar: 3.5.3
ci-info: 4.0.0
clsx: 2.1.0
common-ancestor-path: 1.0.1
cookie: 0.6.0
cssesc: 3.0.0
debug: 4.3.4
deterministic-object-hash: 2.0.2
devalue: 4.3.2
diff: 5.1.0
dlv: 1.1.3
dset: 3.1.3
es-module-lexer: 1.4.1
esbuild: 0.19.12
estree-walker: 3.0.3
execa: 8.0.1
fast-glob: 3.3.2
flattie: 1.1.0
github-slugger: 2.0.0
gray-matter: 4.0.3
html-escaper: 3.0.3
http-cache-semantics: 4.1.1
js-yaml: 4.1.0
kleur: 4.1.5
magic-string: 0.30.5
mdast-util-to-hast: 13.0.2
mime: 3.0.0
ora: 7.0.1
p-limit: 5.0.0
p-queue: 8.0.1
path-to-regexp: 6.2.1
preferred-pm: 3.1.2
probe-image-size: 7.2.3
prompts: 2.4.2
rehype: 13.0.1
resolve: 1.22.8
semver: 7.5.4
server-destroy: 1.0.1
shikiji: 0.9.19
string-width: 7.1.0
strip-ansi: 7.1.0
tsconfck: 3.0.1(typescript@5.3.3)
unist-util-visit: 5.0.0
vfile: 6.0.1
vite: 5.0.12(@types/node@20.11.16)
vitefu: 0.2.5(vite@5.0.12)
which-pm: 2.1.1
yargs-parser: 21.1.1
zod: 3.22.4
optionalDependencies:
sharp: 0.32.6
transitivePeerDependencies:
- '@types/node'
- less
- lightningcss
- sass
- stylus
- sugarss
- supports-color
- terser
- typescript
dev: false
/astrojs-compiler-sync@0.3.5(@astrojs/compiler@2.5.0):
resolution: {integrity: sha512-y420rhIIJ2HHDkYeqKArBHSdJNIIGMztLH90KGIX3zjcJyt/cr9Z2wYA8CP5J1w6KE7xqMh0DAkhfjhNDpQb2Q==}
engines: {node: ^14.18.0 || >=16.0.0}

View File

@ -13,7 +13,7 @@
"dependencies": {
"@astrojs/check": "^0.4.1",
"@astrojs/starlight": "^0.17.2",
"astro": "^4.2.8",
"astro": "^4.3.2",
"astro-font": "^0.0.77",
"sass": "^1.69.5",
"sharp": "^0.33.2",