[PR #18] [MERGED] feat: add support for ui bundler #23

Closed
opened 2026-02-16 04:17:01 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs-api/pull/18
Author: @dqbd
Created: 3/4/2025
Status: Merged
Merged: 3/6/2025
Merged by: @dqbd

Base: mainHead: dqbd/api-ui


📝 Commits (10+)

  • 15fa4b7 feat: add experimental UI integration
  • 2e205d7 Fix TS and build
  • e423333 Fix load script
  • 48206ca fix(build): Send logs to stderr instead
  • 0580bbb Set jsx: automatic
  • 7f655e5 Bump to 0.0.14-experimental.0
  • f1b9bd1 Mark @langchain/langgraph-sdk/react-ui as external
  • 103f9ee Do not create a request for every single shadow dom ID
  • 750196b Bump to 0.0.14-experimental.1
  • 64008f6 Add UI bundler as entrypoint

📊 Changes

18 files changed (+941 additions, -373 deletions)

View changed files

📝 libs/create-langgraph/package.json (+1 -1)
📝 libs/create-langgraph/scripts/build.mjs (+3 -1)
📝 libs/create-langgraph/scripts/clean.mjs (+3 -1)
📝 libs/langgraph-api/package.json (+16 -2)
📝 libs/langgraph-api/scripts/build.mjs (+7 -1)
📝 libs/langgraph-api/scripts/clean.mjs (+3 -1)
📝 libs/langgraph-api/scripts/test.mjs (+3 -1)
📝 libs/langgraph-api/src/cli/spawn.mts (+2 -1)
📝 libs/langgraph-api/src/server.mts (+19 -0)
libs/langgraph-api/src/ui/bundler.mts (+113 -0)
libs/langgraph-api/src/ui/load.mts (+74 -0)
libs/langgraph-api/src/ui/render.template.mts (+27 -0)
📝 libs/langgraph-cli/package.json (+2 -2)
📝 libs/langgraph-cli/scripts/build.mjs (+3 -1)
📝 libs/langgraph-cli/scripts/clean.mjs (+3 -2)
📝 libs/langgraph-cli/src/utils/config.mts (+1 -0)
📝 package.json (+3 -0)
📝 pnpm-lock.yaml (+658 -359)

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/langchain-ai/langgraphjs-api/pull/18 **Author:** [@dqbd](https://github.com/dqbd) **Created:** 3/4/2025 **Status:** ✅ Merged **Merged:** 3/6/2025 **Merged by:** [@dqbd](https://github.com/dqbd) **Base:** `main` ← **Head:** `dqbd/api-ui` --- ### 📝 Commits (10+) - [`15fa4b7`](https://github.com/langchain-ai/langgraphjs-api/commit/15fa4b738b9d43588ecb744c763696e45136684a) feat: add experimental UI integration - [`2e205d7`](https://github.com/langchain-ai/langgraphjs-api/commit/2e205d7400f449646e24e9a5cc7bcdc623c5e07b) Fix TS and build - [`e423333`](https://github.com/langchain-ai/langgraphjs-api/commit/e42333311b49ed0f5f9aee595fb55f6295f87952) Fix load script - [`48206ca`](https://github.com/langchain-ai/langgraphjs-api/commit/48206ca212d59e852dec908e195169ec9d5700f2) fix(build): Send logs to stderr instead - [`0580bbb`](https://github.com/langchain-ai/langgraphjs-api/commit/0580bbb1fd9d8d7eb60eaced16cda6d717ea5a21) Set jsx: automatic - [`7f655e5`](https://github.com/langchain-ai/langgraphjs-api/commit/7f655e5186aab99f1221cafd8ce9337b6f8d21e3) Bump to 0.0.14-experimental.0 - [`f1b9bd1`](https://github.com/langchain-ai/langgraphjs-api/commit/f1b9bd116eb41970ce5e8e226803447ac05acd88) Mark `@langchain/langgraph-sdk/react-ui` as external - [`103f9ee`](https://github.com/langchain-ai/langgraphjs-api/commit/103f9ee9eac92f60a6f519e81b6a6eae0b7a7a75) Do not create a request for every single shadow dom ID - [`750196b`](https://github.com/langchain-ai/langgraphjs-api/commit/750196b77e37e89bd26382c1fea8aaba29e00d4c) Bump to 0.0.14-experimental.1 - [`64008f6`](https://github.com/langchain-ai/langgraphjs-api/commit/64008f63c4fbce14c48d5d41fedc5280ee871fd8) Add UI bundler as entrypoint ### 📊 Changes **18 files changed** (+941 additions, -373 deletions) <details> <summary>View changed files</summary> 📝 `libs/create-langgraph/package.json` (+1 -1) 📝 `libs/create-langgraph/scripts/build.mjs` (+3 -1) 📝 `libs/create-langgraph/scripts/clean.mjs` (+3 -1) 📝 `libs/langgraph-api/package.json` (+16 -2) 📝 `libs/langgraph-api/scripts/build.mjs` (+7 -1) 📝 `libs/langgraph-api/scripts/clean.mjs` (+3 -1) 📝 `libs/langgraph-api/scripts/test.mjs` (+3 -1) 📝 `libs/langgraph-api/src/cli/spawn.mts` (+2 -1) 📝 `libs/langgraph-api/src/server.mts` (+19 -0) ➕ `libs/langgraph-api/src/ui/bundler.mts` (+113 -0) ➕ `libs/langgraph-api/src/ui/load.mts` (+74 -0) ➕ `libs/langgraph-api/src/ui/render.template.mts` (+27 -0) 📝 `libs/langgraph-cli/package.json` (+2 -2) 📝 `libs/langgraph-cli/scripts/build.mjs` (+3 -1) 📝 `libs/langgraph-cli/scripts/clean.mjs` (+3 -2) 📝 `libs/langgraph-cli/src/utils/config.mts` (+1 -0) 📝 `package.json` (+3 -0) 📝 `pnpm-lock.yaml` (+658 -359) </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 04:17:01 -05:00
yindo closed this issue 2026-02-16 04:17:01 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraphjs-api#23