Skip to content

Commit

Permalink
deno: update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and Sorikairox committed Mar 17, 2024
1 parent 891fc9c commit 7dcf743
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 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.135.0/testing/asserts.ts';
} from 'https://deno.land/std@0.220.1/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
2 changes: 1 addition & 1 deletion src/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export {
red,
white,
yellow,
} from 'https://deno.land/std@0.135.0/fmt/colors.ts';
} from 'https://deno.land/std@0.220.1/fmt/colors.ts';
export { Reflect } from 'https://deno.land/x/[email protected]/mod.ts';
export { validateObject } from '../validation.ts';
export {
Expand Down
10 changes: 5 additions & 5 deletions src/deps_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ export {
assertSpyCallArg,
assertSpyCalls,
spy,
} from 'https://deno.land/std@0.135.0/testing/mock.ts';
export { FakeTime } from 'https://deno.land/std@0.135.0/testing/time.ts';
} from 'https://deno.land/std@0.220.1/testing/mock.ts';
export { FakeTime } from 'https://deno.land/std@0.220.1/testing/time.ts';
export {
assertEquals,
assertInstanceOf,
assertNotEquals,
assertObjectMatch,
assertRejects,
assertThrows,
} from 'https://deno.land/std@0.135.0/testing/asserts.ts';
export * as path from 'https://deno.land/std@0.135.0/path/mod.ts';
} from 'https://deno.land/std@0.220.1/testing/asserts.ts';
export * as path from 'https://deno.land/std@0.220.1/path/mod.ts';
export {
CookieStore,
Session as OakSession,
} from 'https://deno.land/x/oak_sessions@v4.0.5/mod.ts';
} from 'https://deno.land/x/oak_sessions@v4.1.11/mod.ts';
2 changes: 1 addition & 1 deletion src/renderer/handlebar.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Renderer } from './interface.ts';
import { Handlebars } from 'https://deno.land/x/handlebars@v0.8.0/mod.ts';
import { Handlebars } from 'https://deno.land/x/handlebars@v0.10.0/mod.ts';

const defaultOption = {
baseDir: 'views',
Expand Down

0 comments on commit 7dcf743

Please sign in to comment.