diff --git a/.changeset/fix-unused-type-import.md b/.changeset/fix-unused-type-import.md new file mode 100644 index 0000000000..385955e386 --- /dev/null +++ b/.changeset/fix-unused-type-import.md @@ -0,0 +1,5 @@ +--- +"stylelint": patch +--- + +Fixed: TS compilation error due to needless `file-entry-cache` import diff --git a/types/stylelint/index.d.ts b/types/stylelint/index.d.ts index 940ab88106..1a12c44f81 100644 --- a/types/stylelint/index.d.ts +++ b/types/stylelint/index.d.ts @@ -2,7 +2,6 @@ declare module 'stylelint' { import type * as PostCSS from 'postcss'; import type { GlobbyOptions } from 'globby'; import type { cosmiconfig } from 'cosmiconfig'; - import type * as fileEntryCache from 'file-entry-cache'; namespace stylelint { export type Severity = 'warning' | 'error';