Hello postcss experts!
I’m updating an old plugin to postCSS 8 API but I meet some issues.
This simple postCSS plugin fall into an infinite loop:
module.exports = (options = {}) => {
return {
postcssPlugin: 'postcss-failing-plugin',
Declaration(decl) {
if (decl.prop.startsWith('--')) {
decl.prop = decl.prop.replace(/^--/, `--prefix-`);
}
},
};
};
module.exports.postcss = true;
The documentation mention this behaviour:
Plugins will re-visit all nodes, which you changed or added. If you will change any children, plugin will re-visit parent as well. Only
Once
andOnceExit
will not be called again. writing a plugin
But nothing to avoid it.
How to edit a value in Declaration
without making an infinite loop?
You may be repeatedly adding a prefix to custom property declarations that are already prefixed, causing the declaration visitor to run infinitely.
You can use a negative lookahead assertion
(?!)
to match custom properties that do not begin with a specific custom property prefix, i.e.^--(?!prefix-)
.As applied to your example