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
With cascade: false, we should be able to determine whether or not a CSS selector is used:
<divclass='foo'>this is a div</div><spanclass='{{class}}'>this is a span with a dynamic class</span><style>
/* keep these */
* {...}
div {...}
.foo {...}
.bar {...} /* we don't know the value of `class` */
:hover {...}
/* discard these */
div > p {...}
div p {...}
p {...}
div.bar {...}
</style>
It would be helpful to print a warning if unused selectors are encountered in a component.
The text was updated successfully, but these errors were encountered:
With
cascade: false
, we should be able to determine whether or not a CSS selector is used:It would be helpful to print a warning if unused selectors are encountered in a component.
The text was updated successfully, but these errors were encountered: