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
Currently, the package files (and changelogs) are parsed into a representation such as an AST, mutated and converted back. This relies on the library we are using to round trip non-destructively, that is, do this process without changing parts of the file that we didn't modify.
We want to look at possibly editing the string directly, and kind of shimming in our change instead. We can perhaps still use this libraries to help, but not depend on them doing a round trip. This should address many of the issues we are seeing and major versions of dependencies changing expectations.
The text was updated successfully, but these errors were encountered:
Currently, the package files (and changelogs) are parsed into a representation such as an AST, mutated and converted back. This relies on the library we are using to round trip non-destructively, that is, do this process without changing parts of the file that we didn't modify.
We want to look at possibly editing the string directly, and kind of shimming in our change instead. We can perhaps still use this libraries to help, but not depend on them doing a round trip. This should address many of the issues we are seeing and major versions of dependencies changing expectations.
The text was updated successfully, but these errors were encountered: