You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a result of #225 , @romainmenke discovered that postcss-values-parser package has an issue given that it modifies the prototype of postcss/lib/container this means that if you have multiple versions of the postcss-values-parser you can run into unexpected issues.
We've normalised all of the usages of this plugin into a single version so it's deduped but if you run the following command:
npm ls --depth 2 | grep postcss-values-parser
And don't get something along these lines where there's a single version (6.0.1) you might run into issues.
As a result of #225 , @romainmenke discovered that
postcss-values-parserpackage has an issue given that it modifies the prototype ofpostcss/lib/containerthis means that if you have multiple versions of thepostcss-values-parseryou can run into unexpected issues.We've normalised all of the usages of this plugin into a single version so it's deduped but if you run the following command:
npm ls --depth 2 | grep postcss-values-parserAnd don't get something along these lines where there's a single version (6.0.1) you might run into issues.