Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix: lockfile wasn't updated after dependency + bring viem to root level package.json #1642

Merged
merged 15 commits into from
Jan 1, 2025
Merged
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."
Loading