Skip to content

Commit 24bd137

Browse files
committed
fix(plugin): remove console logs
1 parent 5e1e4f3 commit 24bd137

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,11 @@ export const tailwindPlugin = (options: TailwindPluginOptions = {}): Plugin => {
3434

3535
async transform(src, id) {
3636
if (!isPotentialCssRootFile(id)) return null;
37-
console.log('BOSH: tailwind-plugin: transform', { id, src });
3837

3938
using I = new Instrumentation();
4039
I.start('[@tailwindcss/tsdown] Generate CSS');
4140

4241
let root = roots.get(id);
43-
console.log('BOSH: tailwind-plugin: root', root);
4442

4543
let result = await root.generate(
4644
src,

0 commit comments

Comments
 (0)