pd
pd
Agree, I think the `"$schema"` entries solve this as mentioned, as well as the docs online. I find my self spending a bunch of time each new repo setup manually...
> > I find my self spending a bunch of time each new repo setup manually deleting all the comments in the json files. > > @prescience-data Why is this...
> 🤔 Instead of `rush init --no-comments`, what if we provided a CLI tool that can remove comments and re-add them? With our current model, there is already a problem...
Additional context on **Alternative 1** for anyone looking for a possible solution: ```typescript const AUTH_EVENTS: AuthChangeEvents = { SIGNED_IN: "SIGNED_IN", SIGNED_OUT: "SIGNED_OUT" } const publicRouteNames: ComputedRef = computed(() => router...
> It's not really the job of any auth lib to block rendering Agree, but the emission of an event when the restore process has been completed (one way or...
But this is the point, presently there is no event to signal that auth has resolved when restoring a session?
This assumes an auth state change will happen. If there is no previous session to restore no authStateChange event will ever fire, meaning you will be waiting indefinitely. On initial...
This is not the scenario in question, a normal login logout flow is perfect as-is. The scenario is around the Supabase automatic session restoration if previously authenticated. When this occurs...
Haha no worries - I was writing most of that half asleep so hopefully didn't come off abrupt. > If there truly isn't a way to tell if the state...
Edit - after reading a blog regarding the Fastify benchmarks, is it correct to understand that "bare" is the native server? [source](https://javascript.plainenglish.io/fastify-express-benchmark-4c4aebb726d6) If so, perhaps making this more explicit in...