We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9cb699 commit c75a001Copy full SHA for c75a001
test/plugins/blue.js
@@ -1,5 +1,5 @@
1
module.exports = function (css) {
2
- css.eachDecl(function (decl) {
+ css.walkDecls(function (decl) {
3
if ( decl.value === 'black' ) decl.value = 'blue';
4
});
5
};
test/plugins/red.js
@@ -7,7 +7,7 @@ module.exports = {
7
warning = true;
8
}
9
10
11
if ( decl.value === 'blue' ) decl.value = 'red';
12
13
0 commit comments