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
I've encountered an issue with using json object pattern matching.
It's necessary to use suffix sometimes when there are unintended partial matches due to missing json keys in the pattern json object.
For example, be able to replace matches like @@env.css.darkStyle@@ instead of just @@env.css.darkStyle. This is needed to avoid erroneously substituting a partial match like @@env.css.darkStyle.headerColor with the @@env.css.darkStyle match (which is a serialized json object) when property "headerColor" is not found in the pattern json object under env.css.darkStyle.
Please refer to my pull request.
The text was updated successfully, but these errors were encountered:
I've encountered an issue with using json object pattern matching.
It's necessary to use suffix sometimes when there are unintended partial matches due to missing json keys in the pattern json object.
For example, be able to replace matches like @@env.css.darkStyle@@ instead of just @@env.css.darkStyle. This is needed to avoid erroneously substituting a partial match like @@env.css.darkStyle.headerColor with the @@env.css.darkStyle match (which is a serialized json object) when property "headerColor" is not found in the pattern json object under env.css.darkStyle.
Please refer to my pull request.
The text was updated successfully, but these errors were encountered: