Nico Domino
Nico Domino
- Adds new "Infinite Scroll" package: `svelte-infinite` - Github: https://github.com/ndom91/svelte-infinite - Demo: https://svelte-5-infinite.vercel.app
### Changes - Adds testing setup using [playwright](https://playwright.dev), a modern headless browser E2E testing framework - Adds initial 2 tests to ensure API and Webapp are spun up and reachable...
## Repro - Svelte 5 Repro broken: https://stackblitz.com/edit/github-y3fhqr?file=package.json - Looks like the event attributes must be functions, not strings, i.e. - Not `ondrop="return false"`, but `ondrop={() => false}`  ##...
### Description - Fix `onChange` argument type from `ITimezone` (which was a union between the full `ITimezoneOption` object and `string`) to `ITimezoneOption` only. ### Linked Issues ### Additional context
I'm having trouble with copying the generated images to my clipboard. While generally the plugin works great and I've been able to generate png's in my configured path, images don't...
**Describe the bug** I've setup some shortcuts like in the Hyper example in the README, including `f` for `Telescope find_files`. When executing this from the dashboard, however, I get an...
## ☕️ Reasoning - Loosen up `authenticator.transports` type to also accept `null` - Removes the need for each adapter to have an extra method to just coerce `transports` to `undefined`...
## ☕️ Reasoning - Each adapter had (the same) `isDate` function and `isoDate` regexp - Centralized in `@auth/core/adapters` and imported in each adapter - This creates the first non-type export...
### WIP ## ☕️ Reasoning - Existing `@auth/supabase-adapter` tests are broken and disabled in root `package.json` `test` script - Removes downloading `supabase.deb` Debian pkg in CI and adds installing the...
## ☕️ Reasoning - Re-enable the `Run E2E tests (Nextjs-Docker)` test - Have to build one of our apps into the container - This requires adding the `Credentials` provider, but...