Skip to content

Commit e44c604

Browse files
authored
chore: update dependencies (#10)
1 parent fa6069f commit e44c604

File tree

23 files changed

+199
-212
lines changed

23 files changed

+199
-212
lines changed

apps/registry/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
"name": "registry",
33
"type": "module",
44
"private": true,
5+
"imports": {
6+
"#styles": "./src/styles/global.css",
7+
"#layout": "./src/layouts/Layout.astro",
8+
"#components/*": "./src/components/*"
9+
},
510
"scripts": {
611
"build": "astro build",
712
"dev": "astro dev",

apps/registry/src/layouts/Layout.astro

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import "~/styles/global.css";
2+
import "#styles";
33
44
interface Props {
55
title: string;
@@ -26,12 +26,10 @@ const { title, description } = Astro.props;
2626
<title>{title}</title>
2727
<meta name="description" content={description} />
2828

29-
<!-- Open Graph -->
3029
<meta property="og:title" content={title} />
3130
<meta property="og:description" content={description} />
3231
<meta property="og:url" content={canonical} />
3332

34-
<!-- Twitter -->
3533
<meta name="twitter:title" content={title} />
3634
<meta name="twitter:description" content={description} />
3735

apps/registry/src/pages/404.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import Layout from "~/layouts/Layout.astro";
2+
import Layout from "#layout";
33
44
export const prerender = true;
55

apps/registry/src/pages/500.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import Layout from "~/layouts/Layout.astro";
2+
import Layout from "#layout";
33
44
export const prerender = true;
55

apps/registry/src/pages/index.astro

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
import TopBar from "~/components/TopBar.astro";
3-
import Layout from "~/layouts/Layout.astro";
2+
import TopBar from "#components/TopBar.astro";
3+
import Layout from "#layout";
44
55
export const prerender = true;
66

apps/registry/tsconfig.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"extends": "astro/tsconfigs/strictest",
33
"compilerOptions": {
4-
"paths": { "~/*": ["./src/*"] },
54
"jsxImportSource": "solid-js",
65
"jsx": "preserve"
76
},

apps/registry/wrangler.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"name": "u",
55

6-
"compatibility_date": "2025-12-02",
6+
"compatibility_date": "2026-03-17",
77

88
"compatibility_flags": ["nodejs_compat"],
99

biome.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

biome.jsonc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"$schema": "https://biomejs.dev/schemas/2.4.9/schema.json",
3+
"extends": ["@gameroman/config/biome"]
4+
}

bun.lock

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

0 commit comments

Comments
 (0)