⬆ Updated all packages to latest stable, changed hardware url to /uses
Some checks failed
Build and deploy website / build (push) Failing after 42s

This commit is contained in:
Martin Berg Alstad 2025-01-19 20:02:40 +01:00
parent 2fc18f642d
commit 89a349b4fd
Signed by: martials
GPG Key ID: 706F53DD087A91DE
7 changed files with 1030 additions and 807 deletions

View File

@ -14,28 +14,28 @@
}, },
"dependencies": { "dependencies": {
"@astrojs/check": "^0.9.4", "@astrojs/check": "^0.9.4",
"@astrojs/mdx": "4.0.0-beta.2", "@astrojs/mdx": "^4.0.6",
"@astrojs/node": "9.0.0-beta.2", "@astrojs/node": "9.0.1",
"@astrojs/sitemap": "^3.2.1", "@astrojs/sitemap": "^3.2.1",
"@astrojs/svelte": "6.0.0-beta.1", "@astrojs/svelte": "^7.0.3",
"@astrojs/tailwind": "^5.1.2", "@astrojs/tailwind": "^5.1.4",
"@iconify-json/pajamas": "^1.2.3", "@iconify-json/pajamas": "^1.2.4",
"@inlang/paraglide-astro": "^0.2.2", "@inlang/paraglide-astro": "^0.3.5",
"@inlang/paraglide-js": "1.11.2", "@inlang/paraglide-js": "1.11.8",
"@tailwindcss/typography": "^0.5.15", "@tailwindcss/typography": "^0.5.16",
"astro": "5.0.0-beta.5", "astro": "5.1.7",
"astro-icon": "^1.1.1", "astro-icon": "^1.1.5",
"sharp": "^0.33.5", "sharp": "^0.33.5",
"svelte": "^4.2.19", "svelte": "^5.19.0",
"tailwindcss": "^3.4.13", "tailwindcss": "^3.4.17",
"typescript": "^5.6.3" "typescript": "^5.7.3"
}, },
"devDependencies": { "devDependencies": {
"daisyui": "^4.12.13", "daisyui": "^4.12.23",
"prettier": "^3.3.3", "prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1", "prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.2.7", "prettier-plugin-svelte": "^3.3.3",
"vite": "^5.4.8" "vite": "^6.0.7"
}, },
"prettier": { "prettier": {
"semi": false, "semi": false,

1795
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -27,7 +27,7 @@
<br /> <br />
<CollapseList items={selectedHardware.data.hardware} title={m.hardware()} /> <CollapseList items={selectedHardware.data.hardware} title={m.hardware()} />
<div class="my-2" /> <div class="my-2"></div>
{#if (selectedHardware.data.accessories)} {#if (selectedHardware.data.accessories)}
<CollapseList items={selectedHardware.data.accessories} title={m.accessories()} /> <CollapseList items={selectedHardware.data.accessories} title={m.accessories()} />
{/if} {/if}

View File

@ -21,7 +21,7 @@ const Links: Link[] = [
}, },
{ {
label: m.hardware, label: m.hardware,
to: "/hardware" to: "/uses"
}, },
{ {
label: m.contactMe, label: m.contactMe,

View File

@ -12,14 +12,14 @@ export type NavLink =
| "/projects" | "/projects"
| `/projects/${Project["id"]}` | `/projects/${Project["id"]}`
| "/links" | "/links"
| "/hardware" | "/uses"
const paths: Set<NavLink> = new Set([ const paths: Set<NavLink> = new Set([
"/", "/",
"/contact", "/contact",
"/projects", "/projects",
"/links", "/links",
"/hardware" "/uses"
]) ])
/** /**