Skip to content

Commit

Permalink
chore: remove tests from build (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
John-peterson-coinbase authored Dec 3, 2024
1 parent 89e0730 commit 7b07d9b
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 8 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
- Initial release of the CDP Agentkit.js Core.
2 changes: 1 addition & 1 deletion cdp-agentkit-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand Down
3 changes: 2 additions & 1 deletion cdp-agentkit-core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*.ts"]
"include": ["src/**/*.ts"],
"exclude": ["src/tests"]
}
9 changes: 9 additions & 0 deletions cdp-langchain/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion cdp-langchain/examples/chatbot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion cdp-langchain/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
3 changes: 2 additions & 1 deletion cdp-langchain/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*.ts"]
"include": ["src/**/*.ts"],
"exclude": ["src/tests"]
}

0 comments on commit 7b07d9b

Please sign in to comment.