From b110ebc31c5718458d038523d2785a30fc5c8010 Mon Sep 17 00:00:00 2001 From: denopendabot Date: Thu, 17 Nov 2022 01:46:58 +0000 Subject: [PATCH] build(deps): bump deno.land/std from 0.164.0 to 0.165.0 --- patty.ts | 4 ++-- test.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/patty.ts b/patty.ts index 486ffa4..cdb46a1 100644 --- a/patty.ts +++ b/patty.ts @@ -1,7 +1,7 @@ import dir from "https://deno.land/x/dir@1.5.1/mod.ts"; import { Command, HelpCommand } from "https://deno.land/x/cliffy@v0.25.4/command/mod.ts"; -import { ensureDir, walk } from "https://deno.land/std@0.164.0/fs/mod.ts"; -import { dirname, join, relative } from "https://deno.land/std@0.164.0/path/mod.ts"; +import { ensureDir, walk } from "https://deno.land/std@0.165.0/fs/mod.ts"; +import { dirname, join, relative } from "https://deno.land/std@0.165.0/path/mod.ts"; new Command() .name("patty") diff --git a/test.ts b/test.ts index 99acfaf..eb0f2d4 100644 --- a/test.ts +++ b/test.ts @@ -1,4 +1,4 @@ -import { assertEquals, assertMatch } from "https://deno.land/std@0.164.0/testing/asserts.ts"; +import { assertEquals, assertMatch } from "https://deno.land/std@0.165.0/testing/asserts.ts"; import { CommandBuilder } from "https://deno.land/x/dax@0.15.0/mod.ts"; const tmpDir = Deno.makeTempDirSync();