Ron Spickenagel
Ron Spickenagel
This is tied to a know issue with indexes #136. Hoping to have that sorted in the next major version. For now, you can use the [@transform-path tag](https://github.com/LeDDGroup/typescript-transform-paths#transform-path-tag) to explicitly...
Hi Victor. Thanks for the report! I'd be glad to take a look. Can you make a reproduction repository so I can see what's happening?
Thanks for the added detail, @SlyryD. > I realized while writing this that the issue could be because we run 2 builds in parallel: Interestingly, that's the problem that locks...
Hello and thanks for the report! We don't do anything with `references`, so I don't think that's going to be related to ts-patch. Can you give more details about what...
Changing `type="lb_cookie"` to `type="source_ip"` removes the error — https://github.com/ansible/ansible/issues/67993#issuecomment-594711100
The node in question is a wrapper node. It is a commonly used pattern for html parsers, however, I think it makes sense to add something to the readme which...
Updated my original comment with a strategy. ~~Because of the other issue I posted, this isn't possible for me at the moment.~~ I would suggest directly mitigating this issue in...
> This would probably best be solved by a custom `isMergeableObject` that keeps track of what it's compared to, and returns `false` if it's an object that has been seen...
Edit: I misread the original code... updating my response.
Effectively, that becomes: ```js const a = { child: { grandchild: { tiny_baby: 'hi' } }; let b; b = { child: { grandchild: b } }; ``` You're correct...