Update Freshjs

This commit is contained in:
Ayase Minori 2024-01-29 07:19:37 +00:00
parent 89dd83bf1c
commit aa680953c6
2 changed files with 13 additions and 12 deletions

View file

@ -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",

View file

@ -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;