8000 fix: full esm build support by sweatybridge · Pull Request #444 · supabase/postgres-meta · GitHub
[go: up one dir, main page]

Skip to content

fix: full esm build support #444

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Dec 25, 2022
Prev Previous commit
Next Next commit
chore: fix prettier
  • Loading branch information
sweatybridge committed Dec 23, 2022
commit 34929cb889056ee6aa3910732dcf0c4046b8ba0f
7 changes: 6 additions & 1 deletion src/lib/PostgresMetaRoles.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
import { ident, literal } from 'pg-format'
import { DEFAULT_ROLES } from './constants.js'
import { rolesSql } from './sql/index.js'
import { PostgresMetaResult, PostgresRole, PostgresRoleCreate, PostgresRoleUpdate } from './types.js'
import {
PostgresMetaResult,
PostgresRole,
PostgresRoleCreate,
PostgresRoleUpdate,
} from './types.js'
export function changeRoleConfig2Object(config: string[]) {
if (!config) {
return null
Expand Down
0