From a47cac9c2562f7bf0f5fb4c767dfa09255140299 Mon Sep 17 00:00:00 2001 From: Lenz Weber-Tronic Date: Wed, 27 Mar 2024 17:50:03 +0100 Subject: [PATCH] remove console.log --- packages/client-react-streaming/tsup.config.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/client-react-streaming/tsup.config.ts b/packages/client-react-streaming/tsup.config.ts index 20afcf8e..5fc121a0 100644 --- a/packages/client-react-streaming/tsup.config.ts +++ b/packages/client-react-streaming/tsup.config.ts @@ -85,7 +85,6 @@ const acModuleImports: Plugin = { }); // handle "client component" boundary imports build.onResolve({ filter: /\.cc\.js$/ }, async (args) => { - console.log(args, build.initialOptions.define["TSUP_FORMAT"]); if (build.initialOptions.define["TSUP_FORMAT"] === '"cjs"') { return { path: args.path.replace(/\.cc\.js$/, ".cc.cjs"),