Skip to content

Commit

Permalink
deno: update imports (#88)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Sep 18, 2024
1 parent 4a99a70 commit cffc683
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion spec/validate-body-decorator.test.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import {
assertEquals,
assertExists,
} from 'https://deno.land/std@0.223.0/testing/asserts.ts';
} from 'https://deno.land/std@0.224.0/testing/asserts.ts';
import { DanetApplication } from '../src/mod.ts';
import { Module } from '../src/module/mod.ts';
import { Body, Controller, Get, Post } from '../src/router/controller/mod.ts';
Expand Down
16 changes: 8 additions & 8 deletions src/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ export {
red,
white,
yellow,
} from 'https://deno.land/std@0.223.0/fmt/colors.ts';
} from 'https://deno.land/std@0.224.0/fmt/colors.ts';
export { Reflect } from 'https://deno.land/x/[email protected]/mod.ts';
export { validateObject } from '../validation.ts';
export {
type Context,
Hono as Application,
type MiddlewareHandler,
type Next,
} from 'https://deno.land/x/hono@v4.2.6/mod.ts';
export { type HandlerInterface } from 'https://deno.land/x/hono@v4.2.6/types.ts';
export { HonoRequest } from 'https://deno.land/x/hono@v4.2.6/request.ts';
export { getPath } from 'https://deno.land/x/hono@v4.2.6/utils/url.ts';
} from 'https://deno.land/x/hono@v4.3.11/mod.ts';
export { type HandlerInterface } from 'https://deno.land/x/hono@v4.3.11/types.ts';
export { HonoRequest } from 'https://deno.land/x/hono@v4.3.11/request.ts';
export { getPath } from 'https://deno.land/x/hono@v4.3.11/utils/url.ts';
export {
RegExpRouter,
SmartRouter,
TrieRouter,
} from 'https://deno.land/x/hono@v4.2.6/mod.ts';
export { SSEStreamingApi, streamSSE } from 'https://deno.land/x/hono@v4.2.6/helper.ts';
export { cors } from 'https://deno.land/x/hono@v4.2.6/middleware.ts'
} from 'https://deno.land/x/hono@v4.3.11/mod.ts';
export { SSEStreamingApi, streamSSE } from 'https://deno.land/x/hono@v4.3.11/helper.ts';
export { cors } from 'https://deno.land/x/hono@v4.3.11/middleware.ts'
8 changes: 4 additions & 4 deletions src/deps_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ export {
assertSpyCallArg,
assertSpyCalls,
spy,
} from 'https://deno.land/std@0.223.0/testing/mock.ts';
export { FakeTime } from 'https://deno.land/std@0.223.0/testing/time.ts';
} from 'https://deno.land/std@0.224.0/testing/mock.ts';
export { FakeTime } from 'https://deno.land/std@0.224.0/testing/time.ts';
export {
assertEquals,
assertInstanceOf,
assertNotEquals,
assertObjectMatch,
assertRejects,
assertThrows,
} from 'https://deno.land/std@0.223.0/testing/asserts.ts';
export * as path from 'https://deno.land/std@0.223.0/path/mod.ts';
} from 'https://deno.land/std@0.224.0/testing/asserts.ts';
export * as path from 'https://deno.land/std@0.224.0/path/mod.ts';
export {
CookieStore,
Session as OakSession,
Expand Down

0 comments on commit cffc683

Please sign in to comment.