Skip to content

Commit 35bb33b

Browse files
committed
Don't export CollectorChecker
Legit issue that causes Knip E2Es to fail :) https://github.com/webpro-nl/knip/actions/runs/21980071806/job/63500314522
1 parent ae62f9c commit 35bb33b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

uno-preset-a11y.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import type { Preset } from 'unocss'
22

3-
export type CollectorChecker = (warning: string, rule: string) => void
3+
type CollectorChecker = (warning: string, rule: string) => void
44

55
// Track warnings to avoid duplicates
66
const warnedClasses = new Set<string>()

uno-preset-rtl.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import type { CSSEntries, DynamicMatcher, Preset, RuleContext } from 'unocss'
22
import { cornerMap, directionSize, h } from '@unocss/preset-wind4/utils'
33

4-
export type CollectorChecker = (warning: string, rule: string) => void
4+
type CollectorChecker = (warning: string, rule: string) => void
55

66
// Track warnings to avoid duplicates
77
const warnedClasses = new Set<string>()

0 commit comments

Comments
 (0)