Easily migrate your Ghost Site to Astro, an Astro Integration that turns your Ghost server into a Headless CMS https://astro-ghostcms.xyz/
Go to file
Adam Matthiesen 44c689625b
Bump the prod-dependencies group with 4 updates (#63)
Bumps the prod-dependencies group with 4 updates:
[astro](https://github.com/withastro/astro/tree/HEAD/packages/astro),
[vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite),
[astro-seo](https://github.com/jonasmerlin/astro-seo) and
[sass](https://github.com/sass/dart-sass).

Updates `astro` from 4.3.7 to 4.4.0
<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.4.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9614">#9614</a>
<a
href="d469bebd7b"><code>d469bebd7b45b060dc41d82ab1cf18ee6de7e051</code></a>
Thanks <a
href="https://github.com/matthewp"><code>@​matthewp</code></a>! -
Improves Node.js streaming performance.</p>
<p>This uses an <code>AsyncIterable</code> instead of a
<code>ReadableStream</code> to do streaming in Node.js. This is a
non-standard enhancement by Node, which is done only in that
environment.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/10001">#10001</a>
<a
href="748b2e87cd"><code>748b2e87cd44d8bcc1ab9d7e504703057e2000cd</code></a>
Thanks <a
href="https://github.com/bholmesdev"><code>@​bholmesdev</code></a>! -
Removes content collection warning when a configured collection does not
have a matching directory name. This should resolve <code>i18n</code>
collection warnings for Starlight users.</p>
<p>This also ensures configured collection names are always included in
<code>getCollection()</code> and <code>getEntry()</code> types even when
a matching directory is absent. We hope this allows users to discover
typos during development by surfacing type information.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/10074">#10074</a>
<a
href="7443929381"><code>7443929381b47db0639c49a4d32aec4177bd9102</code></a>
Thanks <a
href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! -
Add a UI showing the list of found problems when using the audit app in
the dev toolbar</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/10099">#10099</a>
<a
href="b340f8fe3a"><code>b340f8fe3aaa81e38c4f1aa41498b159dc733d86</code></a>
Thanks <a
href="https://github.com/martrapp"><code>@​martrapp</code></a>! - Fixes
a regression where view transition names containing special characters
such as spaces or punctuation stopped working.</p>
<p>Regular use naming your transitions with <code>transition:
name</code> is unaffected.</p>
<p>However, this fix may result in breaking changes if your project
relies on the particular character encoding strategy Astro uses to
translate <code>transition:name</code> directives into values of the
underlying CSS <code>view-transition-name</code> property. For example,
<code>Welcome to Astro</code> is now encoded as
<code>Welcome_20to_20Astro_2e</code>.</p>
<p>This mainly affects spaces and punctuation marks but no Unicode
characters with codes &gt;= 128.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9976">#9976</a>
<a
href="91f75afbc6"><code>91f75afbc642b6e73dd4ec18a1fe2c3128c68132</code></a>
Thanks <a
href="https://github.com/OliverSpeir"><code>@​OliverSpeir</code></a>! -
Adds a new optional <code>astro:assets</code> image attribute
<code>inferSize</code> for use with remote images.</p>
<p>Remote images can now have their dimensions inferred just like local
images. Setting <code>inferSize</code> to <code>true</code> allows you
to use <code>getImage()</code> and the <code>&lt;Image /&gt;</code> and
<code>&lt;Picture /&gt;</code> components without setting the
<code>width</code> and <code>height</code> properties.</p>
<pre lang="astro"><code>---
import { Image, Picture, getImage } from 'astro:assets';
const myPic = await getImage({ src: 'https://example.com/example.png',
inferSize: true });
---
<p>&lt;Image src=&quot;<a
href="https://example.com/example.png">https://example.com/example.png</a>&quot;
inferSize alt=&quot;&quot; /&gt;
&lt;Picture src=&quot;<a
href="https://example.com/example.png">https://example.com/example.png</a>&quot;
inferSize alt=&quot;&quot; /&gt;
</code></pre></p>
<p>Read more about <a
href="https://docs.astro.build/en/guides/images/#infersize">using
<code>inferSize</code> with remote images</a> in our documentation.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/10015">#10015</a>
<a
href="6884b103c8"><code>6884b103c8314a43e926c6acdf947cbf812a21f4</code></a>
Thanks <a
href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! -
Adds initial support for performance audits to the dev toolbar</p>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/10116">#10116</a>
<a
href="4bcc249a9f"><code>4bcc249a9f34aaac59658ca626c828bd6dbb8046</code></a>
Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>!
- Fixes an issue where the dev server froze when typescript aliases were
used.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/10096">#10096</a>
<a
href="227cd83a51"><code>227cd83a51bbd451dc223fd16f4cf1b87b8e44f8</code></a>
Thanks <a href="https://github.com/Fryuni"><code>@​Fryuni</code></a>! -
Fixes regression on routing priority for multi-layer index pages</p>
<p>The sorting algorithm positions more specific routes before less
specific routes, and considers index pages to be more specific than a
dynamic route with a rest parameter inside of it.
This means that <code>/blog</code> is considered more specific than
<code>/blog/[...slug]</code>.</p>
<p>But this special case was being applied incorrectly to indexes, which
could cause a problem in scenarios like the following:</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.4.0</h2>
<h3>Minor Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9614">#9614</a>
<a
href="d469bebd7b"><code>d469bebd7b45b060dc41d82ab1cf18ee6de7e051</code></a>
Thanks <a
href="https://github.com/matthewp"><code>@​matthewp</code></a>! -
Improves Node.js streaming performance.</p>
<p>This uses an <code>AsyncIterable</code> instead of a
<code>ReadableStream</code> to do streaming in Node.js. This is a
non-standard enhancement by Node, which is done only in that
environment.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/10001">#10001</a>
<a
href="748b2e87cd"><code>748b2e87cd44d8bcc1ab9d7e504703057e2000cd</code></a>
Thanks <a
href="https://github.com/bholmesdev"><code>@​bholmesdev</code></a>! -
Removes content collection warning when a configured collection does not
have a matching directory name. This should resolve <code>i18n</code>
collection warnings for Starlight users.</p>
<p>This also ensures configured collection names are always included in
<code>getCollection()</code> and <code>getEntry()</code> types even when
a matching directory is absent. We hope this allows users to discover
typos during development by surfacing type information.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/10074">#10074</a>
<a
href="7443929381"><code>7443929381b47db0639c49a4d32aec4177bd9102</code></a>
Thanks <a
href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! -
Add a UI showing the list of found problems when using the audit app in
the dev toolbar</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/10099">#10099</a>
<a
href="b340f8fe3a"><code>b340f8fe3aaa81e38c4f1aa41498b159dc733d86</code></a>
Thanks <a
href="https://github.com/martrapp"><code>@​martrapp</code></a>! - Fixes
a regression where view transition names containing special characters
such as spaces or punctuation stopped working.</p>
<p>Regular use naming your transitions with <code>transition:
name</code> is unaffected.</p>
<p>However, this fix may result in breaking changes if your project
relies on the particular character encoding strategy Astro uses to
translate <code>transition:name</code> directives into values of the
underlying CSS <code>view-transition-name</code> property. For example,
<code>Welcome to Astro</code> is now encoded as
<code>Welcome_20to_20Astro_2e</code>.</p>
<p>This mainly affects spaces and punctuation marks but no Unicode
characters with codes &gt;= 128.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/9976">#9976</a>
<a
href="91f75afbc6"><code>91f75afbc642b6e73dd4ec18a1fe2c3128c68132</code></a>
Thanks <a
href="https://github.com/OliverSpeir"><code>@​OliverSpeir</code></a>! -
Adds a new optional <code>astro:assets</code> image attribute
<code>inferSize</code> for use with remote images.</p>
<p>Remote images can now have their dimensions inferred just like local
images. Setting <code>inferSize</code> to <code>true</code> allows you
to use <code>getImage()</code> and the <code>&lt;Image /&gt;</code> and
<code>&lt;Picture /&gt;</code> components without setting the
<code>width</code> and <code>height</code> properties.</p>
<pre lang="astro"><code>---
import { Image, Picture, getImage } from 'astro:assets';
const myPic = await getImage({ src: 'https://example.com/example.png',
inferSize: true });
---
<p>&lt;Image src=&quot;<a
href="https://example.com/example.png">https://example.com/example.png</a>&quot;
inferSize alt=&quot;&quot; /&gt;
&lt;Picture src=&quot;<a
href="https://example.com/example.png">https://example.com/example.png</a>&quot;
inferSize alt=&quot;&quot; /&gt;
</code></pre></p>
<p>Read more about <a
href="https://docs.astro.build/en/guides/images/#infersize">using
<code>inferSize</code> with remote images</a> in our documentation.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/10015">#10015</a>
<a
href="6884b103c8"><code>6884b103c8314a43e926c6acdf947cbf812a21f4</code></a>
Thanks <a
href="https://github.com/Princesseuh"><code>@​Princesseuh</code></a>! -
Adds initial support for performance audits to the dev toolbar</p>
</li>
</ul>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/10116">#10116</a>
<a
href="4bcc249a9f"><code>4bcc249a9f34aaac59658ca626c828bd6dbb8046</code></a>
Thanks <a href="https://github.com/lilnasy"><code>@​lilnasy</code></a>!
- Fixes an issue where the dev server froze when typescript aliases were
used.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/withastro/astro/pull/10096">#10096</a>
<a
href="227cd83a51"><code>227cd83a51bbd451dc223fd16f4cf1b87b8e44f8</code></a>
Thanks <a href="https://github.com/Fryuni"><code>@​Fryuni</code></a>! -
Fixes regression on routing priority for multi-layer index pages</p>
<p>The sorting algorithm positions more specific routes before less
specific routes, and considers index pages to be more specific than a
dynamic route with a rest parameter inside of it.
This means that <code>/blog</code> is considered more specific than
<code>/blog/[...slug]</code>.</p>
<p>But this special case was being applied incorrectly to indexes, which
could cause a problem in scenarios like the following:</p>
</li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="141f2fb757"><code>141f2fb</code></a>
[ci] release (<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10109">#10109</a>)</li>
<li><a
href="40a2e03ffb"><code>40a2e03</code></a>
chore: move tests to node (<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10115">#10115</a>)</li>
<li><a
href="0f3d4ae30b"><code>0f3d4ae</code></a>
[ci] format</li>
<li><a
href="8701cfee23"><code>8701cfe</code></a>
chore: move <code>css-</code> related tests to <code>node:test</code>
(<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10114">#10114</a>)</li>
<li><a
href="b386d2d7ae"><code>b386d2d</code></a>
[ci] format</li>
<li><a
href="91f75afbc6"><code>91f75af</code></a>
Add <code>inferSize</code> to getImage so width and height are optional
for remote image...</li>
<li><a
href="787e6f5247"><code>787e6f5</code></a>
Update to Vite 5.1 (<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10120">#10120</a>)</li>
<li><a
href="e9cedf0bbc"><code>e9cedf0</code></a>
[ci] format</li>
<li><a
href="4bcc249a9f"><code>4bcc249</code></a>
fix(dev): preload matched routes sequentially (<a
href="https://github.com/withastro/astro/tree/HEAD/packages/astro/issues/10116">#10116</a>)</li>
<li><a
href="51b6ff7403"><code>51b6ff7</code></a>
Fix invalid URLs being returned from <code>getRegistry</code>,
synchronize all copies (#...</li>
<li>Additional commits viewable in <a
href="https://github.com/withastro/astro/commits/astro@4.4.0/packages/astro">compare
view</a></li>
</ul>
</details>
<br />

Updates `vite` from 5.1.2 to 5.1.3
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md">vite's
changelog</a>.</em></p>
<blockquote>
<h2><!-- raw HTML omitted -->5.1.3 (2024-02-15)<!-- raw HTML omitted
--></h2>
<ul>
<li>fix: cachedTransformMiddleware for direct css requests (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15919">#15919</a>)
(<a href="https://github.com/vitejs/vite/commit/5099028">5099028</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15919">#15919</a></li>
<li>refactor(runtime): minor tweaks (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15904">#15904</a>)
(<a href="https://github.com/vitejs/vite/commit/63a39c2">63a39c2</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15904">#15904</a></li>
<li>refactor(runtime): seal ES module namespace object instead of
feezing (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15914">#15914</a>)
(<a href="https://github.com/vitejs/vite/commit/4172f02">4172f02</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/15914">#15914</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bf39527904"><code>bf39527</code></a>
release: v5.1.3</li>
<li><a
href="509902807c"><code>5099028</code></a>
fix: cachedTransformMiddleware for direct css requests (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15919">#15919</a>)</li>
<li><a
href="4172f02b70"><code>4172f02</code></a>
refactor(runtime): seal ES module namespace object instead of feezing
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15914">#15914</a>)</li>
<li><a
href="63a39c244b"><code>63a39c2</code></a>
refactor(runtime): minor tweaks (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/15904">#15904</a>)</li>
<li>See full diff in <a
href="https://github.com/vitejs/vite/commits/v5.1.3/packages/vite">compare
view</a></li>
</ul>
</details>
<br />

Updates `astro-seo` from 0.8.0 to 0.8.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/jonasmerlin/astro-seo/releases">astro-seo's
releases</a>.</em></p>
<blockquote>
<h2>v0.8.2</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Add sizes attribute to Link type</li>
</ul>
<h2>v0.8.1</h2>
<h3>Bug Fixes</h3>
<ul>
<li><strong><a
href="https://redirect.github.com/jonasmerlin/astro-seo/issues/84">#84</a>:</strong>
order of properties (<a
href="da25a509f0">da25a50</a>),
closes <a
href="https://redirect.github.com/jonasmerlin/astro-seo/issues/84">#84</a></li>
<li>type issue (<a
href="3414cb8651">3414cb8</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/jonasmerlin/astro-seo/blob/main/CHANGELOG.md">astro-seo's
changelog</a>.</em></p>
<blockquote>
<h3><a
href="https://github.com/jonasmerlin/astro-seo/compare/v0.8.1...v0.8.2">0.8.2</a>
(2024-02-19)</h3>
<h3>Bug Fixes</h3>
<ul>
<li>Add sizes attribute to Link type</li>
</ul>
<h3><a
href="https://github.com/jonasmerlin/astro-seo/compare/v0.8.0...v0.8.1">0.8.1</a>
(2024-02-18)</h3>
<h3>Bug Fixes</h3>
<ul>
<li><strong><a
href="https://redirect.github.com/jonasmerlin/astro-seo/issues/84">#84</a>:</strong>
order of properties (<a
href="da25a509f0">da25a50</a>),
closes <a
href="https://redirect.github.com/jonasmerlin/astro-seo/issues/84">#84</a></li>
<li>type issue (<a
href="3414cb8651">3414cb8</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="434e0088f5"><code>434e008</code></a>
chore(release): 0.8.2</li>
<li><a
href="9862453db9"><code>9862453</code></a>
Merge pull request <a
href="https://redirect.github.com/jonasmerlin/astro-seo/issues/89">#89</a>
from gvkhna:main</li>
<li><a
href="5ba950e9d1"><code>5ba950e</code></a>
test: Add test for extended link sizes attribute</li>
<li><a
href="aa9f0e19a2"><code>aa9f0e1</code></a>
add sizes override to Link element</li>
<li><a
href="d2f841d6d0"><code>d2f841d</code></a>
chore(release): 0.8.1</li>
<li><a
href="9c4096b67e"><code>9c4096b</code></a>
Bump CI node version to 18.x</li>
<li><a
href="be7850c2b0"><code>be7850c</code></a>
chore: Make CI work again</li>
<li><a
href="ce3ef0fe2f"><code>ce3ef0f</code></a>
Test w/ latest Astro version</li>
<li><a
href="32f8d2914e"><code>32f8d29</code></a>
Merge pull request <a
href="https://redirect.github.com/jonasmerlin/astro-seo/issues/83">#83</a>
from Mansi1:main</li>
<li><a
href="500b25470c"><code>500b254</code></a>
Merge pull request <a
href="https://redirect.github.com/jonasmerlin/astro-seo/issues/85">#85</a>
from mikeethedude:extended-tag-order</li>
<li>Additional commits viewable in <a
href="https://github.com/jonasmerlin/astro-seo/compare/v0.8.0...v0.8.2">compare
view</a></li>
</ul>
</details>
<br />

Updates `sass` from 1.70.0 to 1.71.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/sass/dart-sass/releases">sass's
releases</a>.</em></p>
<blockquote>
<h2>Dart Sass 1.71.0</h2>
<p>To install Sass 1.71.0, download one of the packages below and <a
href="https://katiek2.github.io/path-doc/">add it to your PATH</a>, or
see <a href="https://sass-lang.com/install">the Sass website</a> for
full installation instructions.</p>
<h1>Changes</h1>
<p>For more information about <code>pkg:</code> importers, see <a
href="https://sass-lang.com/blog/announcing-pkg-importers">the
announcement</a> on the Sass blog.</p>
<h3>Command-Line Interface</h3>
<ul>
<li>Add a <code>--pkg-importer</code> flag to enable built-in
<code>pkg:</code> importers. Currently this only supports the Node.js
package resolution algorithm, via <code>--pkg-importer=node</code>. For
example, <code>@use &quot;pkg:bootstrap&quot;</code> will load
<code>node_modules/bootstrap/scss/bootstrap.scss</code>.</li>
</ul>
<h3>JavaScript API</h3>
<ul>
<li>Add a <code>NodePackageImporter</code> importer that can be passed
to the <code>importers</code> option. This loads files using the
<code>pkg:</code> URL scheme according to the Node.js package resolution
algorithm. For example, <code>@use &quot;pkg:bootstrap&quot;</code> will
load <code>node_modules/bootstrap/scss/bootstrap.scss</code>. The
constructor takes a single optional argument, which indicates the base
directory to use when locating <code>node_modules</code> directories. It
defaults to <code>path.dirname(require.main.filename)</code>.</li>
</ul>
<h3>Dart API</h3>
<ul>
<li>Add a <code>NodePackageImporter</code> importer that can be passed
to the <code>importers</code> option. This loads files using the
<code>pkg:</code> URL scheme according to the Node.js package resolution
algorithm. For example, <code>@use &quot;pkg:bootstrap&quot;</code> will
load <code>node_modules/bootstrap/scss/bootstrap.scss</code>. The
constructor takes a single argument, which indicates the base directory
to use when locating <code>node_modules</code> directories.</li>
</ul>
<p>See the <a
href="https://github.com/sass/dart-sass/blob/master/CHANGELOG.md#1710">full
changelog</a> for changes in earlier releases.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/sass/dart-sass/blob/main/CHANGELOG.md">sass's
changelog</a>.</em></p>
<blockquote>
<h2>1.71.0</h2>
<p>For more information about <code>pkg:</code> importers, see <a
href="https://sass-lang.com/blog/announcing-pkg-importers">the
announcement</a> on the Sass blog.</p>
<h3>Command-Line Interface</h3>
<ul>
<li>Add a <code>--pkg-importer</code> flag to enable built-in
<code>pkg:</code> importers. Currently
this only supports the Node.js package resolution algorithm, via
<code>--pkg-importer=node</code>. For example, <code>@use
&quot;pkg:bootstrap&quot;</code> will load
<code>node_modules/bootstrap/scss/bootstrap.scss</code>.</li>
</ul>
<h3>JavaScript API</h3>
<ul>
<li>Add a <code>NodePackageImporter</code> importer that can be passed
to the <code>importers</code>
option. This loads files using the <code>pkg:</code> URL scheme
according to the Node.js
package resolution algorithm. For example, <code>@use
&quot;pkg:bootstrap&quot;</code> will load
<code>node_modules/bootstrap/scss/bootstrap.scss</code>. The constructor
takes a single
optional argument, which indicates the base directory to use when
locating
<code>node_modules</code> directories. It defaults to
<code>path.dirname(require.main.filename)</code>.</li>
</ul>
<h3>Dart API</h3>
<ul>
<li>Add a <code>NodePackageImporter</code> importer that can be passed
to the <code>importers</code>
option. This loads files using the <code>pkg:</code> URL scheme
according to the Node.js
package resolution algorithm. For example, <code>@use
&quot;pkg:bootstrap&quot;</code> will load
<code>node_modules/bootstrap/scss/bootstrap.scss</code>. The constructor
takes a single
argument, which indicates the base directory to use when locating
<code>node_modules</code> directories.</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="3e6721e79f"><code>3e6721e</code></a>
Fix new static warnings with Dart 3.3 (<a
href="https://redirect.github.com/sass/dart-sass/issues/2173">#2173</a>)</li>
<li><a
href="2cab33e2b3"><code>2cab33e</code></a>
Update the language revision in Homebrew on release (<a
href="https://redirect.github.com/sass/dart-sass/issues/2171">#2171</a>)</li>
<li><a
href="84ededd368"><code>84ededd</code></a>
Use musl support in cli_pkg (<a
href="https://redirect.github.com/sass/dart-sass/issues/2172">#2172</a>)</li>
<li><a
href="00571ec531"><code>00571ec</code></a>
Add a <code>--pkg-importer</code> flag (<a
href="https://redirect.github.com/sass/dart-sass/issues/2169">#2169</a>)</li>
<li><a
href="84f31f0def"><code>84f31f0</code></a>
Update pubspec/changelog for <code>pkg:</code> importers (<a
href="https://redirect.github.com/sass/dart-sass/issues/2168">#2168</a>)</li>
<li><a
href="9ee5408211"><code>9ee5408</code></a>
[Package Importer] Dart Implementation (<a
href="https://redirect.github.com/sass/dart-sass/issues/2130">#2130</a>)</li>
<li><a
href="9423aa53ae"><code>9423aa5</code></a>
Use macos-14 runner instead of macos-latest-xlarge runner (<a
href="https://redirect.github.com/sass/dart-sass/issues/2167">#2167</a>)</li>
<li><a
href="bbf97b4fb4"><code>bbf97b4</code></a>
Remove the sass dependency from package.json (<a
href="https://redirect.github.com/sass/dart-sass/issues/2162">#2162</a>)</li>
<li>See full diff in <a
href="https://github.com/sass/dart-sass/compare/1.70.0...1.71.0">compare
view</a></li>
</ul>
</details>
<br />


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 <dependency name> major version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's major version (unless you unignore this specific
dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this
group update PR and stop Dependabot creating any more for the specific
dependency's minor version (unless you unignore this specific
dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR
and stop Dependabot creating any more for the specific dependency
(unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>
2024-02-19 16:34:55 -08:00
.changeset Add changeset for dependabot updates 2024-02-20 00:12:07 +00:00
.github Update changeset-dependabot.yml 2024-02-19 16:33:35 -08:00
.pnpm-store/v3/files chore: update versions 2024-02-18 18:43:02 +00:00
.vscode Linted the entire project. no linting errors now 2024-02-15 04:49:02 -08:00
packages Bump the prod-dependencies group with 4 updates 2024-02-20 00:11:45 +00:00
playground Bump the prod-dependencies group with 4 updates 2024-02-20 00:11:45 +00:00
unlighthouse Create README.md 2024-01-23 18:40:45 -08:00
.gitignore Update .gitignore 2024-02-14 07:52:56 -08:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2024-01-24 16:48:13 -08:00
CONTRIBUTING.md Update changeset and contributing information and add new workflow 2024-02-14 03:13:37 -08:00
LICENSE Massive Repo Cleanup and organization 2024-02-14 05:17:01 -08:00
README.md Update README.md 2024-02-14 11:53:51 -08:00
SECURITY.md Create SECURITY.md 2024-01-24 17:01:02 -08:00
biome.json Linted the entire project. no linting errors now 2024-02-15 04:49:02 -08:00
package.json Bump the dev-dependencies group with 3 updates 2024-02-19 11:17:34 +00:00
pnpm-lock.yaml Bump the prod-dependencies group with 4 updates 2024-02-20 00:11:45 +00:00
pnpm-workspace.yaml All the astro deployments for demo's and main website have been relocated to their own repo's due to to many different projects trying to deploy at a time was causing to many issues. 2024-02-12 05:56:01 -08:00
vitest.workspace.json Linted the entire project. no linting errors now 2024-02-15 04:49:02 -08:00

README.md

Want to Chat? Join our Discord

For a full always up to date documentation please checkout Our Website

Don't like GitHub, and prefer GitLab? This Repo is Auto Cloned to Gitlab! Check it out here: GitLab: Astro-GhostCMS

Demos

Quick Start

# Its easy run this command and follow the prompt!
npx @matthiesenxyz/create-astro-ghostcms

Our Supporters:

Want to be listed here? by name or logo? Signup Here for an Astro-GhostCMS Suppoter Membership (Silver and up get listed here) Also All Suppoter Memberships get a Discord rank!

Repo Structure

This repo is structured as a pnpm monorepo. All of our packages can be found under the packages/ folder. These are all internal packages or independently published that can be found on npmjs.com

In this Repo you will find the Following:

Contributing

Acknowledgments

Ghost is a trademark of The Ghost Foundation. This project is not directly related to or provided by The Ghost Foundation and is intended to help create a easier method to utilize their provided JavaScript tools to link a Headless GhostCMS install in to your Astro project.

Built with Astro

Maintained with GitKraken

gitkraken-logo-stencil-color