PostCSS

警告

如果你正在使用 PostCSS 7,请安装 @fullhuman/postcss-purgecss 3.0.0:npm i -D @fullhuman/[email protected]。从版本 4.0 开始,它仅与 PostCSS >=8 兼容。

安装

npm i -D @fullhuman/postcss-purgecss postcss

用法

postcss.config.js

const purgecss = require('@fullhuman/postcss-purgecss')

module.exports = {
  plugins: [
    purgecss({
      content: ['./**/*.html']
    })
  ]
}

使用 PostCSS API

const purgecss = require('@fullhuman/postcss-purgecss')
postcss([
  purgecss({
    content: ['./src/**/*.html']
  })
])

请参阅 PostCSS在新窗口中打开 文档,了解你所在环境的示例。

选项

所有 PurgeCSS 选项均可与插件一起使用。您将在下面找到可用的主要选项的类型定义。有关完整列表,请访问 PurgeCSS 文档网站在新窗口中打开

export interface UserDefinedOptions {
  content?: Array<string | RawContent>;
  contentFunction?: (sourceFile: string) => Array<string | RawContent>;
  defaultExtractor?: ExtractorFunction;
  extractors?: Array<Extractors>;
  fontFace?: boolean;
  keyframes?: boolean;
  output?: string;
  rejected?: boolean;
  stdin?: boolean;
  stdout?: boolean;
  variables?: boolean;
  safelist?: UserDefinedSafelist;
  blocklist?: StringRegExpArray;
}

interface RawContent {
  extension: string
  raw: string
}

interface RawCSS {
  raw: string
}

type StringRegExpArray = Array<RegExp | string>;