Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
iuioiua committed Apr 14, 2024
1 parent 7f5970c commit 68eed25
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"db:migrate": "deno run --allow-read --allow-env --allow-net --unstable-kv tasks/db_migrate.ts",
"db:reset": "deno run --allow-read --allow-env --unstable-kv tasks/db_reset.ts",
"start": "deno run --unstable-kv -A --watch=static/,routes/ --env dev.ts",
"test": "DENO_KV_PATH=:memory: deno test -A --parallel --unstable-kv --coverage",
"test": "DENO_KV_PATH=:memory: deno test -A --parallel --unstable-kv --coverage --env",
"check:license": "deno run --allow-read --allow-write tasks/check_license.ts",
"check:types": "deno check **/*.ts && deno check **/*.tsx",
"ok": "deno fmt --check && deno lint && deno task check:license --check && deno task check:types && deno task test",
Expand Down
2 changes: 1 addition & 1 deletion plugins/kv_oauth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default {
},
{
path: "/signout",
handler: signOut,
handler: async (req) => await signOut(req),
},
],
} as Plugin;

0 comments on commit 68eed25

Please sign in to comment.