Kingston
Kingston
I just ran into this as well. It's because onCreateFieldSubscribe is not used at all in the builder (https://github.com/graphql-nexus/nexus/blob/main/src/builder.ts#L1494). It should be easy enough to implement a corresponding method for...
I dug into the code a bit and realized the arrow position is actually determined by Popper and you can modify the Popper arrow position via the popperModifiers property on...
@gajus I encountered this issue in our E2E tests which were pretty bad since it pretty much triggered the entire Node server to crash on a premature close with @fastify/session....
@zkochan PNPM seems to be working as expected here. .env files are not supported by NPM though Yarn added .env support about a year and a half ago (https://github.com/yarnpkg/berry/issues/4718 /...
It appears related to https://github.com/prettier/prettier/discussions/15167 so potentially something to do with RPC boundaries and the fact that required modules cannot be sent to the appropriate worker thread. I was able...
I also just ran into this attempting to switch to subpath imports that tsx does not follow the typescript resolution. It's explained in the documentation here: https://www.typescriptlang.org/docs/handbook/modules/reference.html#example-local-project-with-conditions > In ./dist/utils.d.mts,...
> This looks interesting. Happy to give this approach a try. One question though, why do we need to explicitly create the index.d.ts file instead of relying on dist/index.d.ts instead?...
> Thanks for sharing that article! It was an interesting read. One of the points mentioned there though was that we could use the `verbatimModuleSyntax` tsconfig option to "force" the...
> Thanks for sharing that article! It was an interesting read. One of the points mentioned there though was that we could use the `verbatimModuleSyntax` tsconfig option to "force" the...
> #2669 Yup that also works! It'd be a breaking change though so I assume it'd be a major release?