Skip to content

Commit

Permalink
Merge branch 'develop' into 711--fix-bug-in-facts_ts
Browse files Browse the repository at this point in the history
  • Loading branch information
monilpat authored Jan 1, 2025
2 parents 1d60e71 + 98af3d5 commit 6c987b4
Show file tree
Hide file tree
Showing 11 changed files with 1,259 additions and 1,521 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/integrationTests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,11 @@ jobs:
node-version: "23"
cache: "pnpm"

- name: Clean up
run: pnpm clean

- name: Install dependencies
run: pnpm install -r
run: pnpm install -r --no-frozen-lockfile

- name: Build packages
run: pnpm build
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
"typedoc": "0.26.11",
"typescript": "5.6.3",
"vite": "5.4.11",
"vitest": "2.1.5"
"vitest": "2.1.5",
"viem": "2.21.58"
},
"pnpm": {
"overrides": {
Expand Down
3 changes: 1 addition & 2 deletions packages/client-lens/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
"@elizaos/core": "workspace:*",
"@lens-protocol/client": "2.2.0",
"@lens-protocol/metadata": "1.2.0",
"axios": "^1.7.9",
"viem": "^2.13.8"
"axios": "^1.7.9"
},
"devDependencies": {
"tsup": "^8.3.5"
Expand Down
3 changes: 1 addition & 2 deletions packages/plugin-abstract/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
"dependencies": {
"@elizaos/core": "workspace:*",
"tsup": "^8.3.5",
"web3": "^4.15.0",
"viem": "2.21.53"
"web3": "^4.15.0"
},
"scripts": {
"build": "tsup --format esm --dts"
Expand Down
3 changes: 1 addition & 2 deletions packages/plugin-avalanche/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
"type": "module",
"types": "dist/index.d.ts",
"dependencies": {
"@elizaos/core": "workspace:*",
"viem": "2.21.49"
"@elizaos/core": "workspace:*"
},
"devDependencies": {
"tsup": "8.3.5"
Expand Down
3 changes: 1 addition & 2 deletions packages/plugin-evm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"@lifi/data-types": "5.15.5",
"@lifi/sdk": "3.4.1",
"@lifi/types": "16.3.0",
"tsup": "8.3.5",
"viem": "^2.21.58"
"tsup": "8.3.5"
},
"scripts": {
"build": "tsup --format esm --dts",
Expand Down
3 changes: 1 addition & 2 deletions packages/plugin-goat/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"@goat-sdk/plugin-coingecko": "0.1.4",
"@goat-sdk/plugin-erc20": "0.1.7",
"@goat-sdk/wallet-viem": "0.1.3",
"tsup": "8.3.5",
"viem": "^2.21.58"
"tsup": "8.3.5"
},
"scripts": {
"build": "tsup --format esm --dts",
Expand Down
1 change: 0 additions & 1 deletion packages/plugin-story/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
"@elizaos/plugin-trustdb": "workspace:*",
"@story-protocol/core-sdk": "1.2.0-rc.3",
"tsup": "8.3.5",
"viem": "2.21.54",
"@pinata/sdk": "^2.1.0"
},
"scripts": {
Expand Down
3 changes: 1 addition & 2 deletions packages/plugin-tee/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
"bs58": "6.0.0",
"node-cache": "5.1.2",
"pumpdotfun-sdk": "1.3.2",
"tsup": "8.3.5",
"viem": "2.21.53"
"tsup": "8.3.5"
},
"scripts": {
"build": "tsup --format esm --dts",
Expand Down
2,750 changes: 1,244 additions & 1,506 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions scripts/clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,7 @@ find . -type d -name "node_modules" -exec rm -rf {} + \
# Remove core cache
rm -rf ./packages/core/cache

# Remove pnpm lockfile
rm ./pnpm-lock.yaml

echo "Cleanup completed."

0 comments on commit 6c987b4

Please sign in to comment.