/postcss-strip-selectors

Remove css elements from stylesheets matching a given set of selectors

Primary LanguageJavaScriptMIT LicenseMIT

PostCSS Strip Selectors Build Status

PostCSS plugin to remove specified selectors from your stylesheets.

.foo {
    /* Input example */
}
.foo {
  /* Output example */
}

Usage

postcss([ require('postcss-strip-selectors') ])

See PostCSS docs for examples for your environment.