[PR #1218] [CLOSED] feat(api): merge langgraphjs-api with langgraphjs #1310

Closed
opened 2026-02-15 20:15:12 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/1218
Author: @dqbd
Created: 5/24/2025
Status: Closed

Base: mainHead: dqbd/merge-api


📝 Commits (10+)

  • cfeff35 Add turbo, fix formatting
  • 2e6dc94 Use pnpm 10.2.0
  • 4a81458 Specify PNPM version in GHA
  • b676c82 Add format check
  • 8bfbeaf Add missing repository entries
  • 99f00de Add test root script, update README.md
  • f43bb82 feat(create): git init, attempt to detect package manager, bump to 0.0.3
  • b200729 Merge pull request #8 from langchain-ai/dqbd/create-remove-yarn-
  • 1b8e74b fix(api): add custom events stream mode back
  • e9f972e Merge pull request #9 from langchain-ai/dqbd/custom-mode

📊 Changes

168 files changed (+20878 additions, -84 deletions)

View changed files

📝 .github/workflows/ci.yml (+54 -4)
📝 .gitignore (+7 -6)
📝 LICENSE (+1 -1)
📝 docs/mkdocs.yml (+1 -1)
📝 examples/package.json (+1 -1)
libs/create-langgraph/.prettierignore (+2 -0)
libs/create-langgraph/.prettierrc (+1 -0)
libs/create-langgraph/LICENSE (+21 -0)
libs/create-langgraph/package.json (+40 -0)
libs/create-langgraph/scripts/build.mjs (+10 -0)
libs/create-langgraph/scripts/clean.mjs (+9 -0)
libs/create-langgraph/src/cli.mts (+271 -0)
libs/create-langgraph/src/utils/analytics.mts (+60 -0)
libs/create-langgraph/src/utils/version.mts (+16 -0)
libs/create-langgraph/tsconfig.json (+15 -0)
libs/langgraph-api/.gitignore (+8 -0)
libs/langgraph-api/.prettierignore (+2 -0)
libs/langgraph-api/.prettierrc (+1 -0)
libs/langgraph-api/LICENSE (+21 -0)
libs/langgraph-api/README.md (+3 -0)

...and 80 more files

📄 Description

Goal is to make it easier to test against latest langgraphjs


🔄 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/pull/1218 **Author:** [@dqbd](https://github.com/dqbd) **Created:** 5/24/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dqbd/merge-api` --- ### 📝 Commits (10+) - [`cfeff35`](https://github.com/langchain-ai/langgraphjs/commit/cfeff355e0e7e589973887317d4a63f97b4408f5) Add turbo, fix formatting - [`2e6dc94`](https://github.com/langchain-ai/langgraphjs/commit/2e6dc94f026d2962175892db9df67fab4d26fd19) Use pnpm 10.2.0 - [`4a81458`](https://github.com/langchain-ai/langgraphjs/commit/4a814583f9014a751ee793a10d6fefd8ad61e0c4) Specify PNPM version in GHA - [`b676c82`](https://github.com/langchain-ai/langgraphjs/commit/b676c82e6a7ee21c02ce49f3e470356fd9dfc3ea) Add format check - [`8bfbeaf`](https://github.com/langchain-ai/langgraphjs/commit/8bfbeafb9c633c0db586f67543597dc22421fe5d) Add missing repository entries - [`99f00de`](https://github.com/langchain-ai/langgraphjs/commit/99f00dea427ebc84a08e14d9d6cd24fe27db19e7) Add test root script, update README.md - [`f43bb82`](https://github.com/langchain-ai/langgraphjs/commit/f43bb823e6bb73cd26b9b7fd22240fe02612fe52) feat(create): git init, attempt to detect package manager, bump to 0.0.3 - [`b200729`](https://github.com/langchain-ai/langgraphjs/commit/b200729d9c27e6cdd70fbf5a134b4337c6ce6a9f) Merge pull request #8 from langchain-ai/dqbd/create-remove-yarn- - [`1b8e74b`](https://github.com/langchain-ai/langgraphjs/commit/1b8e74bba88e22cc2bfabc820851be720e7d8ce6) fix(api): add custom events stream mode back - [`e9f972e`](https://github.com/langchain-ai/langgraphjs/commit/e9f972ebc567139b5323a2e62bb1cecae351527a) Merge pull request #9 from langchain-ai/dqbd/custom-mode ### 📊 Changes **168 files changed** (+20878 additions, -84 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+54 -4) 📝 `.gitignore` (+7 -6) 📝 `LICENSE` (+1 -1) 📝 `docs/mkdocs.yml` (+1 -1) 📝 `examples/package.json` (+1 -1) ➕ `libs/create-langgraph/.prettierignore` (+2 -0) ➕ `libs/create-langgraph/.prettierrc` (+1 -0) ➕ `libs/create-langgraph/LICENSE` (+21 -0) ➕ `libs/create-langgraph/package.json` (+40 -0) ➕ `libs/create-langgraph/scripts/build.mjs` (+10 -0) ➕ `libs/create-langgraph/scripts/clean.mjs` (+9 -0) ➕ `libs/create-langgraph/src/cli.mts` (+271 -0) ➕ `libs/create-langgraph/src/utils/analytics.mts` (+60 -0) ➕ `libs/create-langgraph/src/utils/version.mts` (+16 -0) ➕ `libs/create-langgraph/tsconfig.json` (+15 -0) ➕ `libs/langgraph-api/.gitignore` (+8 -0) ➕ `libs/langgraph-api/.prettierignore` (+2 -0) ➕ `libs/langgraph-api/.prettierrc` (+1 -0) ➕ `libs/langgraph-api/LICENSE` (+21 -0) ➕ `libs/langgraph-api/README.md` (+3 -0) _...and 80 more files_ </details> ### 📄 Description Goal is to make it easier to test against latest `langgraphjs` --- <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-15 20:15:12 -05:00
yindo closed this issue 2026-02-15 20:15:13 -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#1310