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
Looks like the regex for postcss-alias is being too greedy. For memory this was done to support multi-property declaration (eg: transition: opactiy ... ).
The only way I can think of supporting that use-case and not running into issues like this is by having a whitelist of valid css properties, but even that wouldn't ensure it doesn't mangle unwanted text. Might just have to deprecate that feature
ex:
@alias {
op: opacity;
}
.tooltip {
content: 'Select one option'
}
rendering : 'Select one opacitytion'
The text was updated successfully, but these errors were encountered: