From a8f438d146037700bd401d9d6bf187d561bcc3ce Mon Sep 17 00:00:00 2001 From: Dan Lynch Date: Fri, 5 Jun 2026 22:15:32 +0000 Subject: [PATCH] refactor: remove inflection-db from export required deps inflection-db is now provisioning-only (runtime calls replaced with inflection.underscore in constructive-db). Exported/sandbox databases no longer need inflection-db installed. --- pgpm/core/src/modules/modules.ts | 1 - pgpm/export/src/export-utils.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/pgpm/core/src/modules/modules.ts b/pgpm/core/src/modules/modules.ts index a4a1dd90e..9c1223ec1 100644 --- a/pgpm/core/src/modules/modules.ts +++ b/pgpm/core/src/modules/modules.ts @@ -15,7 +15,6 @@ export const PGPM_MODULE_MAP: Record = { 'metaschema-schema': '@pgpm/metaschema-schema', 'services': '@pgpm/services', 'pgpm-inflection': '@pgpm/inflection', - 'inflection-db': '@pgpm/inflection-db', 'pgpm-jwt-claims': '@pgpm/jwt-claims', 'pgpm-stamps': '@pgpm/stamps', 'pgpm-totp': '@pgpm/totp', diff --git a/pgpm/export/src/export-utils.ts b/pgpm/export/src/export-utils.ts index 8a8b39233..0371c0aa9 100644 --- a/pgpm/export/src/export-utils.ts +++ b/pgpm/export/src/export-utils.ts @@ -30,7 +30,6 @@ export const DB_REQUIRED_EXTENSIONS = [ 'ltree', 'metaschema-schema', 'pgpm-inflection', - 'inflection-db', 'pgpm-uuid', 'pgpm-utils', 'pgpm-database-jobs',