Hans Klunder

Results 113 comments of Hans Klunder

What worked for me was: https://svelte.dev/docs/svelte/v5-migration-guide#Migration-script It didn't solve everything,but at least I got better error message while running in dev mode. From there on it was possible for me...

I just checked: ```bash grep -rnwl . -e Pyramid ./node_modules/lucide-svelte/dist/aliases.js ./node_modules/lucide-svelte/dist/icons/pyramid.svelte.d.ts ./node_modules/lucide-svelte/dist/icons/index.d.ts ./node_modules/lucide-svelte/dist/icons/pyramid.svelte ./node_modules/lucide-svelte/dist/icons/index.js ./node_modules/.vite/deps_temp_057f3426/lucide-svelte.js ./node_modules/.vite/deps_temp_057f3426/lucide-svelte.js.map ``` lucide-svelte is imported from your package.json Hope this helps. Kind regards, Hans

Hi, thanks for asking. I checked the fastify documentation, it mentions: > Note: Those options will be ignored when used with fastify-plugin https://fastify.dev/docs/latest/Reference/Plugins/ Fastify-openapi-glue is using `fastify-plugin` so I assumed...

Hi, thanks for the explanation. Your usage surprised me a bit as I would have thought that the generated index.js adds little value if you import it again and then...

Just checked: the tests fail on QoS2 handling,which makes sense because the QoS2 message has not been published yet: https://github.com/moscajs/aedes/blob/2c6882ef60f1b41fd5d5d2d36168eaa100afe6fd/lib/handlers/publish.js#L42-L46 What needs to happen in the publish handler (per[MQTT-4.3.3-2]) is:...

@robertsLando The Opifex encoder adds the zero for empty properties as per spec [MQTT-2.2.2.1] The Opifex decoder will reject the packet without the zero. See: https://github.com/seriousme/opifex/blob/mqttv5/mqttPacket/publish.ts Kind regards, Hans

My suggestion would be to at least log a warning when a non-compliant packet is accepted. (or make it an option to accept non-compliant clients etc) [Postels law](https://en.wikipedia.org/wiki/Robustness_principle) sounds great...

@robertsLando it seems that the same mechanism is used by more packets. I can do a PR if you want. Kind regards, Hans