Skip to content

Commit

Permalink
fix typescript issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jcs224 committed May 10, 2024
1 parent 8183baa commit 343a936
Show file tree
Hide file tree
Showing 9 changed files with 268 additions and 648 deletions.
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@jcs224/hono-sessions",
"version": "0.4.0",
"version": "0.4.1",
"exports": "./mod.ts"
}
8 changes: 4 additions & 4 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export type { Context, MiddlewareHandler } from 'npm:[email protected]'
export { createMiddleware } from 'npm:[email protected]/factory'
export { getCookie, setCookie } from 'npm:[email protected]/cookie'
export type { CookieOptions } from 'npm:[email protected]/utils/cookie'
export type { Context, MiddlewareHandler } from 'npm:hono@^3.12.8'
export { createMiddleware } from 'npm:hono@^3.12.8/factory'
export { getCookie, setCookie } from 'npm:hono@^3.12.8/cookie'
export type { CookieOptions } from 'npm:hono@^3.12.8/utils/cookie'
export * as Iron from 'npm:[email protected]'
Binary file modified test/bun/bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion test/bun/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dev:sqlite": "bun run --hot src/test_sqlite.ts"
},
"dependencies": {
"hono": "3.12.8",
"hono": "^3.12.8",
"hono-sessions": "../../npm"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/cloudflare_pages/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"deploy": "$npm_execpath run build && wrangler pages deploy dist"
},
"dependencies": {
"hono": "^4.2.9",
"hono": "^3.12.8",
"hono-sessions": "file:../../npm"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 343a936

Please sign in to comment.