Skip to content

Commit e3dce1a

Browse files
committed
feat: add skippedContentGlobs option to webpack and gulp plugin
1 parent 2a27663 commit e3dce1a

File tree

2 files changed

+2
-0
lines changed
  • packages
    • purgecss-webpack-plugin/src/types
    • rollup-plugin-purgecss/src/types

2 files changed

+2
-0
lines changed

packages/purgecss-webpack-plugin/src/types/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ export interface UserDefinedOptions {
3535
verbose?: boolean;
3636
safelist?: StringRegExpArray | ComplexSafelist | SafelistFunction;
3737
blocklist?: StringRegExpArray | BlocklistFunction;
38+
skippedContentGlobs?: Array<string>;
3839
only?: string[];
3940
}
4041

packages/rollup-plugin-purgecss/src/types/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export interface UserDefinedOptions {
3232
variables?: boolean;
3333
safelist?: UserDefinedSafelist;
3434
blocklist?: StringRegExpArray;
35+
skippedContentGlobs?: Array<string>;
3536

3637
insert?: boolean;
3738
include?: string | RegExp | (string | RegExp)[];

0 commit comments

Comments
 (0)