From e15edafbff3fdd910b879670ba272e10acde6393 Mon Sep 17 00:00:00 2001 From: Amruth Pillai Date: Sat, 4 Jul 2026 22:40:19 +0200 Subject: [PATCH] fix(server): restore @uiw/color-convert runtime dependency The utils color fallback restore re-added the @uiw/color-convert import to packages/utils but not to apps/server, whose bundle keeps the package external. Production server startup failed with ERR_MODULE_NOT_FOUND, breaking the E2E workflow on main. Re-add the dependency. Claude-Session: https://claude.ai/code/session_012Bnvt1MghwHj4qQRxuQUGa --- apps/server/package.json | 1 + pnpm-lock.yaml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/apps/server/package.json b/apps/server/package.json index 29c5ccc16..5d09c3149 100644 --- a/apps/server/package.json +++ b/apps/server/package.json @@ -45,6 +45,7 @@ "@reactive-resume/utils": "workspace:*", "@sindresorhus/slugify": "^3.0.0", "@t3-oss/env-core": "^0.13.11", + "@uiw/color-convert": "^2.10.3", "ai": "^7.0.15", "bcrypt": "^6.0.0", "better-auth": "1.6.23", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 13db928ff..2adbb3a05 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -162,6 +162,9 @@ importers: '@t3-oss/env-core': specifier: ^0.13.11 version: 0.13.11(typescript@6.0.3)(zod@4.4.3) + '@uiw/color-convert': + specifier: ^2.10.3 + version: 2.10.3(@babel/runtime@7.29.7) ai: specifier: ^7.0.15 version: 7.0.15(zod@4.4.3)