From 3b2de6c17d1484ac149dab845d27ef79c53e3423 Mon Sep 17 00:00:00 2001 From: Simon Lecoq <22963968+lowlighter@users.noreply.github.com> Date: Mon, 16 Dec 2024 03:04:52 -0500 Subject: [PATCH] fix(bundle): update test --- bundle/ts/testing/test_specifiers.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bundle/ts/testing/test_specifiers.ts b/bundle/ts/testing/test_specifiers.ts index f5b9fae3..8e6fe5b5 100644 --- a/bundle/ts/testing/test_specifiers.ts +++ b/bundle/ts/testing/test_specifiers.ts @@ -1,7 +1,6 @@ // deno-lint-ignore-file no-console no-external-import // Example module with specifiers import { red } from "jsr:@std/fmt/colors" -import zod from "npm:zod" import { inspect } from "node:util" -console.log(red, zod, inspect) +console.log(red, inspect) console.log("success" as string)