From c48361ebd7473bc096504800a366257a28653096 Mon Sep 17 00:00:00 2001 From: denopendabot Date: Mon, 8 Jan 2024 00:52:56 +0000 Subject: [PATCH] build(deps): bump std from 0.159.0 to 0.211.0 --- http/ba_test.ts | 2 +- http/oauth1_test.ts | 2 +- path/pathresolver.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/http/ba_test.ts b/http/ba_test.ts index e3747aa..b3052ea 100644 --- a/http/ba_test.ts +++ b/http/ba_test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from "https://deno.land/std@0.159.0/testing/asserts.ts"; +import { assertEquals } from "https://deno.land/std@0.211.0/testing/asserts.ts"; import { baFetch, BasicAuthInfo } from "./ba.ts"; const testUrl = diff --git a/http/oauth1_test.ts b/http/oauth1_test.ts index c59c8f5..f5721a2 100644 --- a/http/oauth1_test.ts +++ b/http/oauth1_test.ts @@ -1,4 +1,4 @@ -import { assertEquals } from "https://deno.land/std@0.159.0/testing/asserts.ts"; +import { assertEquals } from "https://deno.land/std@0.211.0/testing/asserts.ts"; import { calcSignature, diff --git a/path/pathresolver.ts b/path/pathresolver.ts index bda717f..db7d55c 100644 --- a/path/pathresolver.ts +++ b/path/pathresolver.ts @@ -1,4 +1,4 @@ -import * as path from "https://deno.land/std@0.159.0/path/mod.ts"; +import * as path from "https://deno.land/std@0.211.0/path/mod.ts"; export function pathResolver(meta: ImportMeta): (p: string) => string { return (p) => path.fromFileUrl(new URL(p, meta.url));