Skip to content

Commit

Permalink
chore: update deno dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow authored Nov 11, 2023
1 parent ed239be commit bbb0a08
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/file/src/deps.deno.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export type { StorageAdapter } from 'https://lib.deno.dev/x/[email protected]/mod.ts';
import { exists, existsSync } from 'https://deno.land/std@0.201.0/fs/mod.ts';
import { resolve } from 'https://deno.land/std@0.201.0/path/mod.ts';
import { exists, existsSync } from 'https://deno.land/std@0.206.0/fs/mod.ts';
import { resolve } from 'https://deno.land/std@0.206.0/path/mod.ts';

export const fs = {
readFile: Deno.readTextFile,
Expand Down
2 changes: 1 addition & 1 deletion packages/redis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Deno

```ts
import { RedisAdapter } from "https://deno.land/x/grammy_storages/redis/src/mod.ts";
import { connect } from "https://deno.land/x/redis@v0.29.4/mod.ts";
import { connect } from "https://deno.land/x/redis@v0.32.0/mod.ts";
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion packages/redis/examples/deno.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Bot, Context, session, SessionFlavor } from 'https://lib.deno.dev/x/[email protected]/mod.ts';
import { RedisAdapter } from 'https://deno.land/x/grammy_storages/redis/src/mod.ts';
import { connect } from 'https://deno.land/x/redis@v0.31.0/mod.ts';
import { connect } from 'https://deno.land/x/redis@v0.32.0/mod.ts';

interface SessionData {
counter: number;
Expand Down
2 changes: 1 addition & 1 deletion packages/redis/src/deps.deno.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export type { Redis as Client, RedisConnectOptions } from 'https://deno.land/x/redis@v0.31.0/mod.ts';
export type { Redis as Client, RedisConnectOptions } from 'https://deno.land/x/redis@v0.32.0/mod.ts';
export type { StorageAdapter } from 'https://lib.deno.dev/x/[email protected]/mod.ts';
2 changes: 1 addition & 1 deletion packages/supabase/src/deps.deno.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { SupabaseClient } from 'https://esm.sh/@supabase/supabase-js@2.33.1';
export { SupabaseClient } from 'https://esm.sh/@supabase/supabase-js@2.38.4';

0 comments on commit bbb0a08

Please sign in to comment.