Skip to content

Commit

Permalink
fix: update glob patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
RebeccaStevens committed Dec 14, 2024
1 parent 0490a67 commit 332eaca
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/globs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ export const GLOB_MTS = "**/?(.)*.mts";
export const GLOB_CJS = "**/?(.)*.cjs";
export const GLOB_CTS = "**/?(.)*.cts";

export const GLOB_STYLE = "**/?(.)*.{c,le,sc}ss";
// cspell:disable-next-line
export const GLOB_STYLE = "**/?(.)*.{c,le,sc,pc,postc}ss";
export const GLOB_CSS = "**/?(.)*.css";
export const GLOB_POSTCSS = "**/?(.)*.{p,post}css";
export const GLOB_LESS = "**/?(.)*.less";
Expand Down Expand Up @@ -56,10 +57,13 @@ export const GLOB_ALL_SRC = [
GLOB_STYLE,
GLOB_JSON,
GLOB_JSON5,
GLOB_JSONC,
GLOB_MARKDOWN,
GLOB_VUE,
GLOB_YAML,
GLOB_HTML,
GLOB_TOML,
GLOB_GRAPHQL,
];

export const GLOB_EXCLUDE = [
Expand Down

0 comments on commit 332eaca

Please sign in to comment.