Brian Buchanan

Results 4 issues of Brian Buchanan

Currently, .optional() behaves like: ```typescript const user = z.object({ username: z.string().optional(), }); type C = z.infer; // { username?: string | undefined }; ``` This results in a type mismatch...

breaking-change
not-intuitive-behavior

glint requires some additional hints to correctly handle discriminated unions when using `ember-truth-helpers`. See: - https://github.com/typed-ember/glint/pull/510 - https://github.com/typed-ember/glint/pull/456 Note that for the `ember-template-imports` case in the example configs given above,...

documentation

- Converted to TypeScript - Converted to a native V2 addon in order to add TypeScript build pipeline - Reformatted using prettier to standard Ember style - Replaced ambient types...

https://github.com/jelhan/ember-style-modifier/blob/c2869d500e965599cb92a81ab6cf596cf62131dd/addon/modifiers/style.ts#L47 This should be: ```typescript Element: ElementCSSInlineStyle; ``` Otherwise, the Typescript compiler complains when you try to use the modifier on SVG elements.

bug