From 46877b13da5441fc89a53f2ac1c25268396a5f07 Mon Sep 17 00:00:00 2001 From: Job Date: Sat, 3 Aug 2024 22:56:33 +0200 Subject: [PATCH] Remove logs Seem to be leftovers from debugging? Other logs are behind the log option. --- index.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/index.js b/index.js index ff3f9b5..3e990ad 100644 --- a/index.js +++ b/index.js @@ -72,7 +72,6 @@ export function standardCssModules(options) { const root = searchForWorkspaceRoot(process.cwd()); - console.log(root); const filter = createFilter( options?.include ?? defaultOptions.include, options?.exclude ?? defaultOptions.exclude, @@ -108,7 +107,6 @@ export function standardCssModules(options) { // const idRelative = idNoParams.replace(process.cwd(), ''); if (!modulePath?.id || filter(idNoParams) === false) return null; - console.log({ modulePath }); const searchParams = new URLSearchParams(params); searchParams.set('raw', ''); searchParams.set('cssStandardModule', ''); @@ -133,7 +131,6 @@ export function standardCssModules(options) { rIdOptions, }); - console.log({ modulePath }); return modulePath; },