Results 28 comments of georeith

Hey @dmonad thanks for the swift reply, this suggestion came ahead of me porting an existing state management to Yjs where we had an undo manager that did both this...

@dmonad love the custom matching idea, a custom function you pass to undo manager that receives the metadata of two transactions it might want to merge where you can return...

@dmonad Yeah I will take a stab at it when I get to that point in moving our current implementation over 👍 . Thanks for confirming its something you would...

+1 I'm having the hardest time just getting it to install into a directory but have the path be relative from my CSS. The issue is that the target keeps...

@eoneill As someone just looking in this is currently unusable for anyone who isn't a maintainer... the documentation is clearly old but whats more there is no clear definition of...

@eoneill Thanks for the info I did indeed need to import assets, I didn't realise I had to do that within the module itself I thought `asset-url()` was a function...

+1 could really use this for test output

+1 can confirm that `refetch()` throwing does not update the `error` returned by `useQuery`, does not seem to be affected by `fetchPolicy` or `notifyNetworkStatusChange` for me. This makes doing retry...

I wrote a workaround for this: ```js // useQuery has a bug where an error in refetch does not change its error property export default function useRetryableQuery(query, options = {})...

This would break my use case: I have tests that run from source, however I want the cache of those tests to miss if one of their dependencies changes regardless...