Skip to content

Commit 3360546

Browse files
fix(deps): update npm-non-major (patch) (#585)
* fix(deps): update npm-non-major * fix lint issues Signed-off-by: Adam Setch <[email protected]> --------- Signed-off-by: Adam Setch <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Adam Setch <[email protected]>
1 parent 5b2ebac commit 3360546

File tree

13 files changed

+72
-81
lines changed

13 files changed

+72
-81
lines changed

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.3.10/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
33
"assist": {
44
"actions": {
55
"source": {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@iconify-json/mdi": "1.2.3",
5454
"@octokit/openapi-types": "27.0.0",
5555
"@tailwindcss/vite": "4.1.18",
56-
"accessible-astro-components": "5.0.3",
56+
"accessible-astro-components": "5.0.4",
5757
"astro": "5.16.6",
5858
"astro-icon": "1.1.5",
5959
"date-fns": "4.1.0",
@@ -65,7 +65,7 @@
6565
"tailwindcss-motion": "1.1.1"
6666
},
6767
"devDependencies": {
68-
"@biomejs/biome": "2.3.10",
68+
"@biomejs/biome": "2.3.11",
6969
"husky": "9.1.7"
7070
},
7171
"packageManager": "[email protected]",

pnpm-lock.yaml

Lines changed: 43 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/DownloadButton.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const { item } = Astro.props;
2121
]}
2222
>
2323
<div class="flex flex-row gap-2 items-center">
24-
<Icon name="line-md:cloud-alt-download-filled" size={24}/>
24+
<Icon name="line-md:cloud-alt-download-filled" size={24} />
2525
<span>{item.name}</span>
2626
</div>
2727
</a>

src/components/Footer.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const isHomepage = currentPathname === '/';
2020
aria-label="GitHub Repository"
2121
class="mt-1 mb-4 mx-2 p-1 hover:motion-preset-pulse hover:motion-duration-1000"
2222
>
23-
<Icon name="mdi:github" size={32}/>
23+
<Icon name="mdi:github" size={32} />
2424
</a>
2525

2626
<div class="my-3">

src/components/GitHubRepo.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,20 +53,20 @@ const { forks, stars, latestReleaseName } = await loadRepoStats();
5353
<section
5454
class="flex flex-row gap-2 items-center motion-preset-pop hover:motion-preset-oscillate hover:motion-duration-500"
5555
>
56-
<Icon name="mdi:github" size={32} class="w-6 sm:w-10"/>
56+
<Icon name="mdi:github" size={32} class="w-6 sm:w-10" />
5757
<div class="font-light max-sm:hidden">
5858
<div class="text-sm">{siteMetadata.repo.fullName}</div>
5959
<div class="flex flex-row gap-2 text-xs">
6060
<div class="flex flex-row gap-0.5 items-center">
61-
<Icon name="mdi:tag-outline"/>
61+
<Icon name="mdi:tag-outline" />
6262
{latestReleaseName}
6363
</div>
6464
<div class="flex flex-1 gap-0.5 items-center">
65-
<Icon name="mdi:star-outline"/>
65+
<Icon name="mdi:star-outline" />
6666
{stars}
6767
</div>
6868
<div class="flex flex-1 gap-0.5 items-center">
69-
<Icon name="mdi:source-branch"/>
69+
<Icon name="mdi:source-branch" />
7070
{forks}
7171
</div>
7272
</div>

src/components/Hero.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ import Logo from '~/components/Logo.astro';
1111
class="container flex flex-col md:flex-row lg:items-center max-w-5xl mx-auto px-12 py-8 lg:py-16"
1212
>
1313
<div class="flex flex-col justify-center grow">
14-
<Logo className="w-16 lg:w-24 mb-4" isDark/>
14+
<Logo className="w-16 lg:w-24 mb-4" isDark />
1515

1616
<h1 class="text-2xl lg:text-4xl font-semibold">{siteMetadata.title}</h1>
1717

1818
<h2 class="mt-2 text-xl lg:text-2xl font-light">
1919
{siteMetadata.description}.
2020
</h2>
2121

22-
<LatestRelease/>
22+
<LatestRelease />
2323
</div>
2424

2525
<div class="motion-preset-pop motion-rotate-in-[-30deg]">

src/components/LatestRelease.astro

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,7 @@ const { downloadLinks, version, releaseDate } = await loadInitialData();
9898
---
9999

100100
<div class="text-sm mt-4">
101-
{
102-
version ? (
101+
{version ? (
103102
<>
104103
<div class="sm:flex md:grid md:grid-cols-2">
105104
{downloadLinks.primary.map((item) => (
@@ -142,6 +141,5 @@ const { downloadLinks, version, releaseDate } = await loadInitialData();
142141
}}
143142
/>
144143
</div>
145-
)
146-
}
144+
)}
147145
</div>

src/components/Navbar.astro

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@ const isHomepage = currentPathname === '/';
1414
>
1515
<div class="flex items-center shrink-0 text-white mr-6">
1616
<a href="/" aria-label={siteMetadata.title}>
17-
<Logo className="w-8"/>
17+
<Logo className="w-8" />
1818
</a>
1919
</div>
2020

2121
<div class="flex justify-end">
2222
<ul class="flex flex-row items-center list-none space-x-4">
23-
{
24-
siteMetadata.menuLinks.map((item) => (
23+
{siteMetadata.menuLinks.map((item) => (
2524
<li>
2625
<a
2726
href={item.path}
@@ -36,11 +35,10 @@ const isHomepage = currentPathname === '/';
3635
{item.name}
3736
</a>
3837
</li>
39-
))
40-
}
38+
))}
4139

4240
<li>
43-
<GitHubRepo/>
41+
<GitHubRepo />
4442
</li>
4543
</ul>
4644
</div>

src/layouts/Layout.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ const ogImage = `${siteMetadata.url}/images/social.png`;
5252
<meta property="og:image" content={ogImage}>
5353

5454
<!-- Google Analytics and Site Verification -->
55-
<GoogleAnalytics/>
55+
<GoogleAnalytics />
5656
<meta
5757
name="google-site-verification"
5858
content={siteMetadata.google.siteVerification}
5959
>
6060
</head>
6161
<body class="flex flex-col min-h-screen">
62-
<Navbar currentPathname={Astro.url.pathname}/>
63-
<slot/>
64-
<Footer currentPathname={Astro.url.pathname}/>
62+
<Navbar currentPathname={Astro.url.pathname} />
63+
<slot />
64+
<Footer currentPathname={Astro.url.pathname} />
6565
</body>
6666
</html>

0 commit comments

Comments
 (0)