postcss 8.4.42 → 8.4.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/container.js +1 -1
- package/lib/processor.js +1 -1
- package/package.json +1 -1
package/lib/container.js
CHANGED
@@ -210,7 +210,7 @@ class Container extends Node {
|
|
210
210
|
|
211
211
|
let processed = nodes.map(i => {
|
212
212
|
/* c8 ignore next */
|
213
|
-
if (!i[my]) Container.rebuild(i)
|
213
|
+
if (!i[my] || !i.markClean) Container.rebuild(i)
|
214
214
|
i = i.proxyOf
|
215
215
|
if (i.parent) i.parent.removeChild(i)
|
216
216
|
if (i[isClean]) markTreeDirty(i)
|
package/lib/processor.js
CHANGED