fix(ci): use knip instead of depcheck

This commit is contained in:
Lukasz Mierzwa
2026-03-23 11:00:11 +00:00
committed by Łukasz Mierzwa
parent 4246c6e85f
commit dcec2cc457
18 changed files with 899 additions and 153 deletions
+1 -1
View File
@@ -266,4 +266,4 @@ const Fetcher: FC<{
);
});
export { Fetcher, Dots, PlayButton, PauseButton };
export { Fetcher, Dots };
+1 -1
View File
@@ -31,4 +31,4 @@ const GetGridElementWidth = (
(innerWidth - outerPadding) / GetColumnsCount(outerWidth, baseWidth),
);
export { GridSizesConfig, GetColumnsCount, GetGridElementWidth };
export { GridSizesConfig, GetGridElementWidth };
+1 -1
View File
@@ -10,7 +10,7 @@ import type { AlertStore } from "Stores/AlertStore";
const isBackgroundDark = (brightness: number) => brightness <= 130;
export interface ClassAndStyleT {
interface ClassAndStyleT {
style: { [key: string]: string | number };
className: string;
baseClassNames: string[];
@@ -207,4 +207,4 @@ const DeleteSilence: FC<{
);
};
export { DeleteSilence, DeleteSilenceModalContent, DeleteResult };
export { DeleteSilence, DeleteSilenceModalContent };
@@ -132,4 +132,4 @@ const SilenceComment: FC<{
},
);
export { SilenceComment, SilenceProgress };
export { SilenceComment };
@@ -194,7 +194,7 @@ const SilenceDeleteModalContent: FC<{
);
};
export const MassDeleteProgress: FC<{
const MassDeleteProgress: FC<{
alertStore: AlertStore;
silences: ClusterSilenceT[];
}> = observer(({ alertStore, silences }) => {