Jayden Seric
Jayden Seric
> with `apollo-upload-client`, the variables that go into Apollo are indeed exactly the same I'm a bit rusty about how all this fits together, but doesn't Apollo Client receive the...
See https://github.com/open-telemetry/opentelemetry-js/issues/4548 .
@janthomasQS thanks for that workaround! For the regular npm CLI: ```json { "overrides": { "graphql-config": "5.1.0" }, } ``` Our `.graphqlrc.json` looks like this, in case there is something about...
VS Code One Dark Pro: Zed One Dark Pro:
As a temporary workaround, instead of using `page.url`: ```js const url = await page.evaluate(() => window.location.href); ```
I see you're publishing both CJS and ESM modules in `graphql-query-complexity`: https://unpkg.com/browse/[email protected]/dist/ Something you could consider, is having a build step when creating those artifacts that inserts `.mjs` file extensions...
What you guys are encountering is known as the "dual package hazard": https://github.com/nodejs/package-examples/blob/52c84dfbc5603273264d08a481075b693f542b8a/README.md#dual-package-hazard This can happen when everything is functioning as intended, and while there are very complicated ways to...
@lino-levan what is a realistic expectation for when this bug might be resolved?
Unfortunately, my test suit that passes with Puppeteer still doesn't pass with Astral v0.5.2: ```js // Test holding the alt key when clicking the link prevents a // client side...
I think the thing to test is that mouse events like click have `event.altKey` etc. working. Searching the codebase for `dispatchMouseEvent`: https://github.com/search?q=repo%3Alino-levan%2Fastral%20dispatchMouseEvent&type=code It seems none of the event details include...