From 5279c7db25ca71cbd01cc9fdcdc0ebee5b7386c6 Mon Sep 17 00:00:00 2001 From: Noel Forte Date: Sat, 23 Nov 2024 17:51:12 -0500 Subject: [PATCH] temporary patch: dnt throws error for `jsr:@std/path@1.0.8`, reverting to `deno.land` URL instead --- deps.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.ts b/deps.ts index 5b86a25..8120f72 100644 --- a/deps.ts +++ b/deps.ts @@ -1,4 +1,4 @@ -export * as path from "jsr:@std/path@1.0.8"; +export * as path from "https://deno.land/std@0.224.0/path/mod.ts"; export * as html from "jsr:@std/html@1.0.3"; export * as astring from "jsr:@davidbonnet/astring@1.8.6";