Results 179 comments of Bruno Fantauzzi

I've done this. It's ugly, but works. This lib could really have this integrated! ![image](https://user-images.githubusercontent.com/28177550/131477168-6fcb4bf8-c8c3-4bef-9c46-cf69aa3d2b83.png) Anyway, thanks for the lib! It's really useful and pretty.

I like this. I don't feel that the invalidation should be the concern of the frontend as it requires knowing what the backend changes with the mutation and where those...

Could `predicate` in `trpc.useContext().x.y.invalidate({ predicate: () => true })` be typed according to the route input? I am aware that `x` can be also invalidated and its predicate type could...

I created #3547, maybe it's useful to you! Notice that it only adds the predicate type to the procedures, not the routers. Doesn't seem useful to me so I didn't...

@juliusmarminge before / if you are going to merge it, I suggest you read this discussion I participated in react-query after I made this PR: https://github.com/TanStack/query/discussions/4762#discussioncomment-4605555 Tl;dr: I don't know...

This is what is blocking me from migrating from Parcel.

@devongovett Can't there be a way to just select directories to be excluded from watch? It's watching my enormous node_modules and it's totally unnecessary in my situation. An option to...

While https://github.com/parcel-bundler/parcel/issues/7587#issuecomment-1117652812 works, this named pipeline conflicts with Storybook's webpack. Anyway to have it working without the named pipeline?

I kept the named pipeline and created this webpack plugin so storybook can remove the `jsx:` from the import: ```jsx module.exports = function (source) { return source.replace(/import\('jsx:(.*\.svg)'\)/g, "import('$1')") } ```...