Scott Quested

Results 4 comments of Scott Quested

I would also be very interested in how we can test this

Seeing the same with `[email protected]` Folder structure ``` pnpm-lock.json apps/fe/package.json ``` Only package.json updates Tried `versioning-strategy: increase` as advised in https://github.com/dependabot/dependabot-core/issues/4993#issuecomment-1289133027 but doesn't work

I would also like to add the `nullToUndefined` helper is not obvious how to upgrade. I think we have found the solution using `q.string().nullable().transform(val => val ?? undefined)` Perhaps it...

@scottrippey So we use it mainly for this type of use case ```ts export const someButtonId = { id: nullToUndefined(q.string().optional()), } satisfies Selection; ``` Which with the new syntax we...