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 Aug 4, 2023
1 parent 7ce1614 commit 1c82d46
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/file/__tests__/deno.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

import { session } from 'https://lib.deno.dev/x/[email protected]/mod.ts';
import { expect } from 'https://deno.land/x/expect@v0.3.0/mod.ts';
import { expect } from 'https://deno.land/x/expect@v0.4.0/mod.ts';
import { FileAdapter } from '../src/mod.ts';
import { fs, path } from '../src/deps.deno.ts';
import { createMessage, createBot } from '../../../libs/utils/src/mod.ts';
Expand Down
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.197.0/fs/mod.ts';
import { resolve } from 'https://deno.land/std@0.197.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.31.0/mod.ts";
```

## Usage
Expand Down
2 changes: 1 addition & 1 deletion packages/redis/__tests__/deno.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { session } from 'https://lib.deno.dev/x/[email protected]/mod.ts';
import { expect } from 'https://deno.land/x/expect@v0.3.0/mod.ts';
import { expect } from 'https://deno.land/x/expect@v0.4.0/mod.ts';
import { RedisAdapter } from '../src/mod.ts';
import { RedisMock } from './redisMock.ts';
import { createBot, createMessage } from '../../../libs/utils/src/mod.ts';
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.31.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.31.0/mod.ts';
export type { StorageAdapter } from 'https://lib.deno.dev/x/[email protected]/mod.ts';

0 comments on commit 1c82d46

Please sign in to comment.