From b30cb0e7585250887de5d432f3def16a0a42a82e Mon Sep 17 00:00:00 2001 From: gongzhiyong Date: Fri, 10 Apr 2026 13:36:30 +0800 Subject: [PATCH] fix: add .npmrc and CUSTOM_BUILD_COMMAND to resolve Oryx npm peer dep conflict Oryx runs `npm install` which fails on peer dependency conflicts between @assistant-ui/react@^0.8.0 and @assistant-ui/react-syntax-highlighter@^0.7.2. Adding .npmrc with legacy-peer-deps=true and CUSTOM_BUILD_COMMAND for pnpm. Co-Authored-By: Claude Opus 4.6 (1M context) --- langgraph/.npmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 langgraph/.npmrc diff --git a/langgraph/.npmrc b/langgraph/.npmrc new file mode 100644 index 0000000..521a9f7 --- /dev/null +++ b/langgraph/.npmrc @@ -0,0 +1 @@ +legacy-peer-deps=true