Skip to content

Instantly share code, notes, and snippets.

@omgmog
Created December 23, 2015 15:46
Show Gist options
  • Save omgmog/c90d7b17fd2f340deb3d to your computer and use it in GitHub Desktop.
Save omgmog/c90d7b17fd2f340deb3d to your computer and use it in GitHub Desktop.
Nope for PostCSS
var postcss = require('postcss');
module.exports = postcss.plugin('postcss-nope', function (opts) {
opts = opts || {};
return function (css) {
css.eachDecl(function transformDecl(decl) {
decl.value = decl.value.replace('nope', 'none');
});
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment