Skip to content

Commit

Permalink
feat: add skippedContentGlobs option to webpack and gulp plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Ffloriel committed Mar 20, 2021
1 parent 2a27663 commit e3dce1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/purgecss-webpack-plugin/src/types/index.ts
Expand Up @@ -35,6 +35,7 @@ export interface UserDefinedOptions {
verbose?: boolean;
safelist?: StringRegExpArray | ComplexSafelist | SafelistFunction;
blocklist?: StringRegExpArray | BlocklistFunction;
skippedContentGlobs?: Array<string>;
only?: string[];
}

Expand Down
1 change: 1 addition & 0 deletions packages/rollup-plugin-purgecss/src/types/index.ts
Expand Up @@ -32,6 +32,7 @@ export interface UserDefinedOptions {
variables?: boolean;
safelist?: UserDefinedSafelist;
blocklist?: StringRegExpArray;
skippedContentGlobs?: Array<string>;

insert?: boolean;
include?: string | RegExp | (string | RegExp)[];
Expand Down

0 comments on commit e3dce1a

Please sign in to comment.