Paul Sanchez

Results 23 comments of Paul Sanchez

Just started poking around in the source about it and found this in baobab.js line 166: ``` /** * Internal method used to refresh the tree's monkey register on every...

Awesome, yeah I can do an PR with the change. I'll double check the mixin as well.

Just want to point out the use case that I'm most commonly in. For things like getting access to things like Github Packages npm registry, I'd need a token to...

This would be amazing. Just tried out the `webpack-bundle-analyzer` today and this tool made it immediately obvious some dependency is pulling in all of lodash. We'll have to go code...

That's definitely true if running the code only in browsers. However if `apollo-link-rest` code is ran in Node.js, then a lot of the browser APIs are not available, such as...

It looks like Apollo Client v3 kind of expected that kind of environment with this code: https://github.com/apollographql/apollo-client/blob/main/src/link/http/checkFetcher.ts#L3

> @basicdays I had definitely not considered using apollo-link-rest much from the server-side-rendering side of things. -- If you're doing SSR I guess I imagined you could stand up an...

I can see if I can look into this one a bit. I get the feeling this specific one may be a bit complex under the hood. Will likely have...

The setup-buildx line of actions is also a beast to try to use if you have your test services and container under test setup through docker-compose. There is no obvious...

All this time, I wasn't aware you could directly import individual lodash features, ha. I've been installing them all as separate packages. I'd imagine a change like this would be...