Eduardo San Martin Morote
Eduardo San Martin Morote
This should be doable with this TS type: ```ts export type ObjectPaths< O extends Record, Path extends string = `` > = keyof O extends string ? | `${Path}${keyof O}`...
Using `--legacy-peer-deps`, npm 7, yarn, or pnpm should work as a workaround. I found https://github.com/npm/cli/issues/4104 which could be related. Any help on this is appreciated! Edit: Apparently, this is okay...
I'm glad you like it ! I need a boiled down repro to check
It seems to be importing the wrong file of pinia but I'm not sure of why, could be a bug of nuxt-vite too.
@Jamiewarb I added an item to the list and updated the issue about how to contribute. Let me know if it's missing anything! I'm really keen on having cookbook entries...
Yeah, it should be mentioned that you can just destructure actions
yeah, you can filter with the existance of an option (e.g. debounce) or explicitely filtering by id within the plugin `if (store.$id === 'someid') `
Translations do not need to wait for this. You can work on them on your side, in a different repository, and publish them. We still need to publish a guide...
just make sure to search for existing translations first in order to collaborate 🙂
I think disallowing direct state modification is a rule that should be enforced at a linter level instead because runtime-wise this would only be a dev-only warning, so it would...