From b316fd2945164c5a0571d788161d7c5bc0c13d43 Mon Sep 17 00:00:00 2001 From: d-klotz Date: Mon, 15 Dec 2025 14:41:32 -0300 Subject: [PATCH] fix(devtools): include infrastructure/ in npm package files The doctor-command requires files from infrastructure/domains/health/ but the infrastructure/ directory was not included in the package.json files array. This caused deployments to fail with: Error: Cannot find module '../../infrastructure/domains/health/domain/value-objects/stack-identifier' Add infrastructure/ to the files array to ensure it's published to npm. --- packages/devtools/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/devtools/package.json b/packages/devtools/package.json index aab301c9..e7088058 100644 --- a/packages/devtools/package.json +++ b/packages/devtools/package.json @@ -7,6 +7,7 @@ }, "files": [ "frigg-cli/", + "infrastructure/", "migrations/", "management-ui/dist/", "index.js",