From c2e5db62a23093f49f33de73561eda5242ab6d52 Mon Sep 17 00:00:00 2001 From: Vadym Samoilenko Date: Wed, 13 May 2026 19:22:00 +0100 Subject: [PATCH] fix(docker): add .pnpmfile.mjs for pnpm 11 ESM import compatibility pnpm 11 unconditionally tries to import .pnpmfile.mjs via dynamic ESM import, throwing ERR_MODULE_NOT_FOUND when absent. Add empty hook file. Co-Authored-By: Claude Sonnet 4.6 --- .pnpmfile.mjs | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .pnpmfile.mjs diff --git a/.pnpmfile.mjs b/.pnpmfile.mjs new file mode 100644 index 0000000..df8f200 --- /dev/null +++ b/.pnpmfile.mjs @@ -0,0 +1,2 @@ +// pnpm hook file — required by pnpm 11 even if empty +export {}