diff --git a/deno.json b/deno.json index b6ef46a..e7a45f9 100644 --- a/deno.json +++ b/deno.json @@ -10,9 +10,9 @@ "lint": { "rules": { "tags": ["fresh", "recommended"] } }, "lib": { "deno.unstable": true }, "imports": { - "$fresh/": "https://deno.land/x/fresh@1.5.4/", - "preact": "https://esm.sh/preact@10.18.1", - "preact/": "https://esm.sh/preact@10.18.1/", + "$fresh/": "https://deno.land/x/fresh@1.6.3/", + "preact": "https://esm.sh/preact@10.19.2", + "preact/": "https://esm.sh/preact@10.19.2/", "preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.2", "@preact/signals": "https://esm.sh/*@preact/signals@1.2.1", "@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.0", diff --git a/fresh.gen.ts b/fresh.gen.ts index 8bcc48c..ae7015f 100644 --- a/fresh.gen.ts +++ b/fresh.gen.ts @@ -2,21 +2,22 @@ // This file SHOULD be checked into source version control. // This file is automatically updated during development when running `dev.ts`. -import * as $0 from "./routes/_404.tsx"; -import * as $1 from "./routes/_app.tsx"; -import * as $2 from "./routes/index.tsx"; -import * as $$0 from "./islands/CounterCard.tsx"; +import * as $_404 from "./routes/_404.tsx"; +import * as $_app from "./routes/_app.tsx"; +import * as $index from "./routes/index.tsx"; +import * as $CounterCard from "./islands/CounterCard.tsx"; +import { type Manifest } from "$fresh/server.ts"; const manifest = { routes: { - "./routes/_404.tsx": $0, - "./routes/_app.tsx": $1, - "./routes/index.tsx": $2, + "./routes/_404.tsx": $_404, + "./routes/_app.tsx": $_app, + "./routes/index.tsx": $index, }, islands: { - "./islands/CounterCard.tsx": $$0, + "./islands/CounterCard.tsx": $CounterCard, }, baseUrl: import.meta.url, -}; +} satisfies Manifest; export default manifest;