supabase / auth-helpers

A collection of framework specific Auth utilities for working with Supabase.
https://supabase.github.io/auth-helpers/
MIT License
902 stars 237 forks source link

move @types/cookie to main dependencies #781

Open rbutera opened 4 months ago

rbutera commented 4 months ago

What kind of change does this PR introduce?

Bug fix / Dependencies update

What is the current behavior?

Currently @types/cookie is listed as a dev dependency only which results in projects that use @supabase/ssr running into difficult-to-debug @typescript-eslint no-unsafe-argument errors. See supabase/auth issue supabase/ssr#53 where this behaviour is reported and documented.

The change in this PR satisfies the solution proposed in the above PR.

What is the new behavior?

@types/cookie is added to dependencies so that the CookieOptions type can be properly inferred.