Seed files use process.cwd

This commit is contained in:
adilallo
2026-05-23 17:44:48 -06:00
parent 200b9f8c9e
commit e64ba640c8
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
"title": "Community Rule",
"author": "MEDLab",
"description": "Community governance and rule-building app",
"version": "0.1.3",
"version": "0.1.4",
"httpPort": 3000,
"healthCheckPath": "/api/health",
"memoryLimit": 805306368,
+2 -1
View File
@@ -11,7 +11,8 @@ import {
sectionFacetsSchema,
} from "../../lib/server/validation/methodFacetsSchemas";
const REPO_ROOT = path.resolve(__dirname, "..", "..");
// Bundled seed runs from repo root (`process.cwd()`); __dirname breaks under esbuild.
const REPO_ROOT = process.cwd();
const DATA_DIR = path.join(REPO_ROOT, "data", "create", "customRule");
/**
+1 -1
View File
@@ -4,7 +4,7 @@ import type { PrismaClient } from "@prisma/client";
import { FACET_GROUP_IDS } from "../../lib/server/validation/methodFacetsSchemas";
import { templateFacetFileSchema } from "../../lib/server/validation/templateFacetSchema";
const REPO_ROOT = path.resolve(__dirname, "..", "..");
const REPO_ROOT = process.cwd();
const TEMPLATE_FACET_FILE = path.join(
REPO_ROOT,
"data",