Skip to content

Commit

Permalink
update Fresh
Browse files Browse the repository at this point in the history
  • Loading branch information
Twi committed Oct 18, 2023
1 parent adc83e4 commit d13b10b
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 22 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.DS_Store
.direnv
.env

# Fresh build directory
_fresh/
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM denoland/deno:1.36.0
FROM denoland/deno:1.37.2

# The port that your application listens to.
EXPOSE 8000
Expand Down
33 changes: 13 additions & 20 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
{
"tasks": {
"start": "deno run --unstable -A --watch=static/,routes/ dev.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
"update": "deno run -A -r https://fresh.deno.dev/update .",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts"
},
"lock": false,
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"imports": {
"preact": "https://esm.sh/preact@10.15.1",
"preact/": "https://esm.sh/preact@10.15.1/",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.0",
"@preact/signals": "https://esm.sh/*@preact/signals@1.1.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.2.3",
"preact": "https://esm.sh/preact@10.18.1",
"preact/": "https://esm.sh/preact@10.18.1/",
"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",
"std/": "https://deno.land/std@0.178.0/",
"@reading-time-estimator": "https://esm.sh/v113/reading-time-estimator@1.8.1",
"$fresh/": "https://deno.land/x/fresh@1.3.1/",
"$fresh/": "https://deno.land/x/fresh@1.5.2/",
"$icons/": "https://deno.land/x/tabler_icons_tsx@0.0.2/tsx/",
"$ttl": "https://deno.land/x/ttl@1.0.1/mod.ts",
"@twind/core": "https://esm.sh/v111/@twind/core@1.1.3",
Expand All @@ -28,12 +27,6 @@
"@freshwind": "https://deno.land/x/freshwind@4.0.0/plugin.ts",
"@/": "./"
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
}
}
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"]
}
2 changes: 1 addition & 1 deletion fresh.gen.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// DO NOT EDIT. This file is generated by fresh.
// DO NOT EDIT. This file is generated by Fresh.
// This file SHOULD be checked into source version control.
// This file is automatically updated during development when running `dev.ts`.

Expand Down

0 comments on commit d13b10b

Please sign in to comment.