Skip to content

Commit

Permalink
Update deno integration dependencies (#5573)
Browse files Browse the repository at this point in the history
* Update deno integration dependencies

* Update dependency in docs
  • Loading branch information
lino-levan authored Dec 10, 2022
1 parent 64b24f0 commit 5b323b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/integrations/deno/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export default defineConfig({
If you disable this, you need to write your own Deno web server. Import and call `handle` from the generated entry script to render requests:
```ts
import { serve } from "https://deno.land/std@0.132.0/http/server.ts";
import { serve } from "https://deno.land/std@0.167.0/http/server.ts";
import { handle } from './dist/entry.mjs';
serve((req: Request) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/integrations/deno/src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import type { SSRManifest } from 'astro';
import { App } from 'astro/app';
// @ts-ignore
import { Server } from 'https://deno.land/std@0.132.0/http/server.ts';
import { Server } from 'https://deno.land/std@0.167.0/http/server.ts';
// @ts-ignore
import { fetch } from 'https://deno.land/x/file_fetch/mod.ts';

Expand Down

0 comments on commit 5b323b9

Please sign in to comment.