PostCSS plugin for selector prefixer.
.foo {
/* Input example */
color: red;
}.myPrefix_foo {
/* Output example */
color: red;
}postcss([ require('postcss-selector-prefixer')({ prefix: 'myPrefix_' }) ])See PostCSS docs for examples for your environment.
