Ben Limmer
Ben Limmer
Today, the test suite runs against `superstruct` `0.15.x`:  However, the current major version is `2.x`. It would be nice to test against the...
## Issue I have a custom scalar defined for working with `Temporal` objects via the [`temporal-polyfill` package](https://github.com/fullcalendar/temporal-polyfill). ```ts import { GraphQLError, GraphQLScalarType, Kind, type GraphQLScalarTypeConfig } from "graphql"; import {...
When upgrading from TypeScript 5.8.3 to 5.9.2, I'm now getting these errors at build time: ```shell evalmachine.:128647 throw e; ^ Error: Debug Failure. False expression: Lexical environment is suspended. at...
### Description `cdktf-cli` transitively depends on `tmp` via `inqurier`: ``` > npm ls tmp [email protected] /private/tmp/test-cdkcli └─┬ [email protected] └─┬ @inquirer/[email protected] └─┬ @inquirer/[email protected] └─┬ [email protected] └── [email protected] ``` `tmp` versions `
During development of #1620 , I noticed that many of the files in the integration test were generated with old logic. This PR removes the codegen'ed files, regenerates them, and...
People need to have: - the `toMatchEntity` `expect` extension - `it.withCtx` extension to use the test files produced by joist-graphql-codegen. This is a sharp edge for users. For now, you...
Specifically: ## `src/resolvers/testUtils.ts` ```ts import { type MakeRunInputMutation, type MakeRunObjectField, type MakeRunObjectFields, makeMakeRunInputMutation, makeMakeRunObjectField, makeMakeRunObjectFields, } from "joist-graphql-resolver-utils/tests"; import { type Context, run } from "joist-test-utils"; export { run };...
This is just to show the issues with the current ESM + grapqhl-codegen process. We can use this to determine what all we need to fix. Note that this is...
Today, the graphql-codegen package assumes that all consumers are using a `src/` TypeScript-style `path` import alias. ```json { "compilerOptions": { "paths": { "src/*": ["src/*"] } } ``` https://github.com/joist-orm/joist-orm/blob/2359c1fe07fddf1b0530407b153c27b3f8e1a96a/packages/graphql-codegen/src/generateGraphqlCodegen.ts/#L8-L14 https://github.com/joist-orm/joist-orm/blob/2359c1fe07fddf1b0530407b153c27b3f8e1a96a/packages/graphql-codegen/src/generateGraphqlCodegen.ts/#L22 https://github.com/joist-orm/joist-orm/blob/2359c1fe07fddf1b0530407b153c27b3f8e1a96a/packages/graphql-codegen/src/generateEnumDetailResolvers.ts/#L11...