Benno
Benno
I'm exploring different bundle sizes using `customElement` for my Shopify Theme Extension and noticed a significant increase in bundle size for `customElement` components from Svelte 3 to Svelte 5. While...
@dummdidumm Thanks for the quick reply. `Reviews.svelte` is mainly HTML code. Ok, so it's expected to have a 100% + larger runtime size. Do you know how much room for...
Libraries like [`feature-state`](https://github.com/inbeta-group/monorepo/blob/develop/packages/feature-state/README.md), [`jotai`](https://github.com/pmndrs/jotai), and [`nanostores`](https://github.com/nanostores/nanostores) already provide implementations for creating global states. How would `useGlobalState()` differ? ### Example using [`feature-state`](https://github.com/inbeta-group/monorepo/blob/develop/packages/feature-state/README.md) (< 1KB minified) `store/tasks.ts` ```ts import { createState }...
@juhaku Regarding Point 2. Is it possible to rename the referenced Schama name for [`Named Fields`](https://docs.rs/utoipa/latest/utoipa/derive.ToSchema.html#named-fields-optional-configuration-options-for-schema)? ```yml id: $ref: '#/components/schemas/crate.reference_id.ReferenceId' ``` to ```yml id: $ref: '#/components/schemas/ReferenceId' ```
Testcase visualization      
@paolostyle I appreciate your work on `zod-openapi`, especially the use of middleware instead of wrapping routes. However, I prefer a more explicit OpenAPI schema definition without excessive abstraction. A potential...
I encountered the same issue both locally and in GitHub Actions. The only workaround that worked for me was downgrading, but that's not an ideal solution. I might be doing...