Skip to content

Commit

Permalink
updating to deno2 -- first client run changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cbleslie committed Oct 14, 2024
1 parent f8f5590 commit cca3a96
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 27 deletions.
34 changes: 8 additions & 26 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,42 +11,24 @@
"preview": "deno run -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"fmt": {
"lineWidth": 80,
"singleQuote": true
},
"exclude": [
"**/_fresh/*",
".direnv"
],
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"fmt": { "lineWidth": 80, "singleQuote": true },
"exclude": ["**/_fresh/*", ".direnv"],
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.6.8/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"$fresh/": "https://deno.land/x/fresh@1.7.2/",
"preact": "https://esm.sh/preact@10.22.0",
"preact/": "https://esm.sh/preact@10.22.0/",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"$std/": "https://deno.land/[email protected]/",
"log": "https://deno.land/[email protected]/log/mod.ts",
"ulid": "https://deno.land/[email protected]/ulid/mod.ts",
"@akamfoad/qrcode": "npm:@akamfoad/[email protected]"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"deploy": {
"project": "11a1aba9-53a3-43f3-bdfe-c83a8f4b2481",
"exclude": [
"**/node_modules"
],
"exclude": ["**/node_modules"],
"include": [],
"entrypoint": "main.ts"
}
Expand Down
2 changes: 1 addition & 1 deletion fresh.gen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import * as $poll_id_share from './routes/poll/[id]/share.tsx';
import * as $poll_new from './routes/poll/new.tsx';
import * as $AutoRefreshingBarGraph from './islands/AutoRefreshingBarGraph.tsx';
import * as $ShareButton from './islands/ShareButton.tsx';
import { type Manifest } from '$fresh/server.ts';
import type { Manifest } from '$fresh/server.ts';

const manifest = {
routes: {
Expand Down

0 comments on commit cca3a96

Please sign in to comment.