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 Jun 9, 2023
1 parent defe3e9 commit 5dbfcbc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.190.0/fs/mod.ts';
import { resolve } from 'https://deno.land/std@0.190.0/path/mod.ts';
import { exists, existsSync } from 'https://deno.land/std@0.191.0/fs/mod.ts';
import { resolve } from 'https://deno.land/std@0.191.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.30.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.29.4/mod.ts';
import { connect } from 'https://deno.land/x/redis@v0.30.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.29.4/mod.ts';
export type { Redis as Client, RedisConnectOptions } from 'https://deno.land/x/redis@v0.30.0/mod.ts';
export type { StorageAdapter } from 'https://lib.deno.dev/x/[email protected]/mod.ts';

0 comments on commit 5dbfcbc

Please sign in to comment.