supabase / postgres-meta

A RESTful API for managing your Postgres. Fetch tables, add roles, and run queries
https://supabase.com
Apache License 2.0
863 stars 112 forks source link

chore: bump to prettier 3 #705

Closed kevcodez closed 5 months ago

kevcodez commented 6 months ago

Prettier 3 made formatting asynchronous, the only thing I wasn't sure about is the reassigned PostgresMeta.format function, I couldn't find any usage

Given we expose this as library, PostgresMeta.format has a breaking change, going from non-async to async

soedirgo commented 6 months ago

There were problems when using Prettier 3 with Jest (specifically when capturing snapshots) - we'll probably need to switch to Vitest

kevcodez commented 6 months ago

@soedirgo Jest does not support snapshots with prettier 3, thus the prettierPath change here

We can switch to vitest before upgrading to prettier 3 though