From 7b07d9bf73749ce8661fac1152bfe5e64ccbe54f Mon Sep 17 00:00:00 2001 From: John Peterson <98187317+John-peterson-coinbase@users.noreply.github.com> Date: Tue, 3 Dec 2024 18:45:26 -0500 Subject: [PATCH] chore: remove tests from build (#12) --- CHANGELOG.md | 6 +++--- cdp-agentkit-core/package.json | 2 +- cdp-agentkit-core/tsconfig.json | 3 ++- cdp-langchain/CHANGELOG.md | 9 +++++++++ cdp-langchain/examples/chatbot/package.json | 2 +- cdp-langchain/package.json | 2 +- cdp-langchain/tsconfig.json | 3 ++- 7 files changed, 19 insertions(+), 8 deletions(-) create mode 100644 cdp-langchain/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 32123cd..0604a85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ -# CDP Node.js AgentKit Changelog +# CDP Agentkit.js Core Changelog ## Unreleased -## [0.0.5] - 2024-11-29 +## [0.0.6] - 2024-12-03 ### Added -- Initial release of the CDP Node.js AgentKit. \ No newline at end of file +- Initial release of the CDP Agentkit.js Core. diff --git a/cdp-agentkit-core/package.json b/cdp-agentkit-core/package.json index f9f58fd..7c9a65f 100644 --- a/cdp-agentkit-core/package.json +++ b/cdp-agentkit-core/package.json @@ -2,7 +2,7 @@ "name": "@coinbase/cdp-agentkit-core", "description": "CDP Agentkit core primitives", "repository": "https://github.com/coinbase/cdp-agentkit-nodejs", - "version": "0.0.5", + "version": "0.0.6", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ diff --git a/cdp-agentkit-core/tsconfig.json b/cdp-agentkit-core/tsconfig.json index 1cde9da..0b0ea72 100644 --- a/cdp-agentkit-core/tsconfig.json +++ b/cdp-agentkit-core/tsconfig.json @@ -4,5 +4,6 @@ "outDir": "./dist", "rootDir": "./src" }, - "include": ["src/**/*.ts"] + "include": ["src/**/*.ts"], + "exclude": ["src/tests"] } diff --git a/cdp-langchain/CHANGELOG.md b/cdp-langchain/CHANGELOG.md new file mode 100644 index 0000000..c689e34 --- /dev/null +++ b/cdp-langchain/CHANGELOG.md @@ -0,0 +1,9 @@ +# CDP Agentkit.js Langchain Extension Changelog + +## Unreleased + +## [0.0.7] - 2024-12-03 + +### Added + +- Initial release of the CDP Agentkit.js Langchain Extension. diff --git a/cdp-langchain/examples/chatbot/package.json b/cdp-langchain/examples/chatbot/package.json index 162405c..c061e0c 100644 --- a/cdp-langchain/examples/chatbot/package.json +++ b/cdp-langchain/examples/chatbot/package.json @@ -11,7 +11,7 @@ "format-check": "prettier -c .prettierrc --check \"**/*.{ts,js,cjs,json,md}\"" }, "dependencies": { - "@coinbase/cdp-agentkit-core": "^0.0.5", + "@coinbase/cdp-agentkit-core": "^0.0.6", "@coinbase/cdp-langchain": "^0.0.7", "@langchain/langgraph": "^0.2.21", "@langchain/openai": "^0.3.14", diff --git a/cdp-langchain/package.json b/cdp-langchain/package.json index f13786c..f83c91b 100644 --- a/cdp-langchain/package.json +++ b/cdp-langchain/package.json @@ -36,7 +36,7 @@ "langchain" ], "dependencies": { - "@coinbase/cdp-agentkit-core": "^0.0.5", + "@coinbase/cdp-agentkit-core": "^0.0.6", "@coinbase/coinbase-sdk": "^0.11.0", "@langchain/core": "^0.3.19", "zod": "^3.22.4" diff --git a/cdp-langchain/tsconfig.json b/cdp-langchain/tsconfig.json index 1cde9da..0b0ea72 100644 --- a/cdp-langchain/tsconfig.json +++ b/cdp-langchain/tsconfig.json @@ -4,5 +4,6 @@ "outDir": "./dist", "rootDir": "./src" }, - "include": ["src/**/*.ts"] + "include": ["src/**/*.ts"], + "exclude": ["src/tests"] }