Package Exports
- postcss-selector-not
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (postcss-selector-not) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
postcss-selector-not 
PostCSS plugin to transform
:not()
W3C CSS leve 4 pseudo class to :not() CSS level 3 selectors
http://dev.w3.org/csswg/selectors-4/#negation
Installation
$ npm install postcss-selector-not
Usage
var postcss = require("postcss")
var output = postcss()
.use(require("postcss-selector-not"))
.process(require("fs").readFileSync("input.css", "utf8"))
.css
Using this input.css
:
p:not(:first-child, .special) {
color: red;
}
you will get:
p:not(:first-child), p:not(.special) {
color: red;
}