From cefca4741bd061843001accec32330454277d925 Mon Sep 17 00:00:00 2001 From: gimenes Date: Wed, 17 Jan 2024 16:05:36 -0300 Subject: [PATCH] remove unused imports --- plugins/tailwind/bundler.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/plugins/tailwind/bundler.ts b/plugins/tailwind/bundler.ts index fbf9ed9..2004a20 100644 --- a/plugins/tailwind/bundler.ts +++ b/plugins/tailwind/bundler.ts @@ -3,9 +3,7 @@ import cssnano from "npm:cssnano@6.0.1"; import postcss, { type AcceptedPlugin } from "npm:postcss@8.4.27"; import tailwindcss, { type Config } from "npm:tailwindcss@3.4.1"; import { cyan } from "std/fmt/colors.ts"; -import { walk } from "std/fs/walk.ts"; -import { globToRegExp, normalizeGlob } from "std/path/glob.ts"; -import { extname, join, toFileUrl } from "std/path/mod.ts"; +import { join, toFileUrl } from "std/path/mod.ts"; export { type Config } from "npm:tailwindcss@3.4.1";