diff --git a/spec/validate-body-decorator.test.ts b/spec/validate-body-decorator.test.ts index 66eee0cb..6fcef72e 100644 --- a/spec/validate-body-decorator.test.ts +++ b/spec/validate-body-decorator.test.ts @@ -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'; diff --git a/src/deps.ts b/src/deps.ts index 0254278f..61959020 100644 --- a/src/deps.ts +++ b/src/deps.ts @@ -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/deno_reflect@v0.2.1/mod.ts'; export { validateObject } from '../validation.ts'; export { diff --git a/src/deps_test.ts b/src/deps_test.ts index 65b24e5c..23caa030 100644 --- a/src/deps_test.ts +++ b/src/deps_test.ts @@ -3,8 +3,8 @@ 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, @@ -12,9 +12,9 @@ export { 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'; diff --git a/src/renderer/handlebar.ts b/src/renderer/handlebar.ts index ba86abf8..a08df669 100644 --- a/src/renderer/handlebar.ts +++ b/src/renderer/handlebar.ts @@ -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',