Ecosyste.ms: Timeline

Browse the timeline of events for every public repo on GitHub. Data updated hourly from GH Archive.

MickL

MickL created a comment on an issue on unjs/unstorage
I guess R2 http is kinda rare because it is an extra overhead if you upload a file to your API (which is not hosted on a Cloudflare worker) and then send the file to Cloudflare by another "upload"....

View on GitHub

MickL created a comment on an issue on unjs/h3
Just to clarify for everyone coming here: This can now be done easily: ```ts const files = await readMultipartFormData(event); ``` Which returns an array of MultiPartData: ```ts interfa...

View on GitHub

MickL created a comment on an issue on drizzle-team/drizzle-orm
Same here, `drizzle-kit push` throws: > Please install either 'better-sqlite3' or '@libsql/client' for Drizzle Kit to connect to SQLite databases

View on GitHub

MickL created a comment on an issue on brianc/node-postgres
For Nuxt / Nitro this did the trick: ```ts rollupConfig: { external: ['pg-native'], }, ``` BUT next error I get is: > Cannot resolve "cloudflare:sockets" from "/Users/mick/git/.../...

View on GitHub

MickL created a comment on an issue on nuxt/cli
> But I'll open a PR to disable the filename hashing (or atleast prepend with filename) by default for `analyze` 😎 This sounds amazing!

View on GitHub

MickL created a comment on an issue on nuxt/cli
Unfortunately analyze is kinda useless a the moment because of the hashed file names. @manniL May you share your snippet?

View on GitHub

MickL starred fabian-hiller/valibot
MickL opened a pull request on nuxt/ui
v3 docs: Made zod imports treeshakable
The following import is not treeshakable: ```ts import { z } from 'zod' ``` So I replaced it with ```ts import * as z from 'zod' ``` Further, because zod is not very treeshakable an...
MickL pushed 1 commit to patch-2 MickL/ui
  • Updated all imports to support treeshaking b29cebf

View on GitHub

MickL pushed 1 commit to patch-2 MickL/ui

View on GitHub

MickL created a comment on an issue on colinhacks/zod
I made a compariso between Zod and Valibot: ```ts const loginSchema = z.object({ email: z.string().email(), password: z.string().min(8), }); ``` - Valibot adds 18kb gzipped to Nuxt p...

View on GitHub

MickL created a comment on an issue on colinhacks/zod
I remember when RxJS went from one huge import (like Zod) to independent functions (like Valibot) did. The migration was a bit painful but it was worth it. Before: ```ts mySubject.throttle(1...

View on GitHub

MickL opened a pull request on nuxt/ui
v3 docs: Fixed Tailwind theming
Corrected usage, should be `@layer theme` and not `@theme`. What I didnt change is the fact that `@theme` is not a "directive" as it is often written on this page. Instead the are using [CSS cas...
MickL pushed 1 commit to patch-1 MickL/ui
  • Update 3.theme.md Corrected usage 778886d

View on GitHub

MickL created a comment on an issue on nitrojs/nitro
**Another issue** with this is that non-existent routes return cors error instead of 404.

View on GitHub

MickL created a comment on an issue on nuxt/image
Thanks, I hope it will get merged!

View on GitHub

MickL opened an issue on drizzle-team/drizzle-orm
[BUG]: Cant create connection to Neon
### Report hasn't been filed before. - [X] I have verified that the bug I'm about to report hasn't been filed before. ### What version of `drizzle-orm` are you using? 0.37.0 ### What version of...
MickL created a comment on an issue on vercel/turborepo
Is this somehow related to some other flag to identify the project? I just checked and it works correctly in a Nuxt project but not in a pure Nitro project with exactly the same eslint config

View on GitHub

MickL opened an issue on vercel/turborepo
eslint-plugin-turbo is not allowing framework variables
### Verify canary release - [X] I verified that the issue exists in the latest Turborepo canary release. ### Link to code that reproduces this issue - ### Which canary version will you have in ...
MickL created a comment on an issue on nuxt/ui
Looks VERY good to me! Before, group order was random: ![Image](https://github.com/user-attachments/assets/021a4ffd-d1da-40ea-9218-a3eacf83abda) ![Image](https://github.com/user-attachments/assets...

View on GitHub

MickL created a comment on an issue on nuxt/ui
![Image](https://github.com/user-attachments/assets/77012a70-eec6-4c31-a139-4a0ab2fb7547) Here we have groups for the results (I am quite bow)

View on GitHub

MickL created a comment on an issue on nuxt/ui
I dont want to argue too :D It feels a bit weird to me because first the user has groups and as soon as he starts typing the groups are gone. On the other hand that is what I would expect when us...

View on GitHub

MickL created a comment on an issue on nuxt/ui
But for what reason is there a group feature if it gets removed as soon as one searches? :)

View on GitHub

MickL created a comment on an issue on nuxt/ui
Shouldnt all groups keep their order? And the search-filter should be applied to each group individually?

View on GitHub

MickL created a comment on an issue on nuxt/ui
> If you want to use the CommandPalette in a popper, you can do it in a Popover for example: https://ui3.nuxt.dev/components/command-palette#within-a-popover I know, but not just for the content ...

View on GitHub

MickL created a comment on an issue on nuxt/ui
What I also noticed is that when using `ignoreFilter` on the group that contains the actions, the group goes to the bottom but they should stay at the top: ``` const groups = ref([ { id: 'ac...

View on GitHub

MickL created a comment on an issue on nuxt/ui
But do you really need to validated ALL country codes? I think there are 255 out there ... In any case, even if you would put it in the Nuxt server part it would still increase the bundle size whic...

View on GitHub

MickL created a comment on an issue on nuxt/ui
I was considering `InputMenu`. But as far as I see it has less features, e.g. grouping and kbds are missing. And it should be more a search and select, then the whole thing gets removed and replace...

View on GitHub

MickL opened an issue on nuxt/ui
v3 CommandPalette: Open only content within popper
### For what version of Nuxt UI are you suggesting this? v3.0.0-alpha.x ### Description [CommandPalette](https://ui3.nuxt.dev/components/command-palette) is great but I wish it show only an inpu...
MickL created a comment on an issue on nuxt/ui
@benjamincanac I was trying v3 for a bit and I just wanted to give you and everyone else who was involved my biggest respect and say that I am amazed by all the work that has been done! I was hopin...

View on GitHub

Load more