Skip to content

Commit

Permalink
fix: bump yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
doomsower committed Jan 29, 2025
1 parent d5e26e9 commit 684bb1a
Show file tree
Hide file tree
Showing 6 changed files with 8,637 additions and 6,005 deletions.
21 changes: 14 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions
.DS_Store
.env
.history/
.idea/
node_modules/
cache/
build/
typechain/
.pnp.*
.yarn/*
artifacts/
keys/*
build/
cache/
coverage*
.env
.DS_Store
keys/*
node_modules/
typechain/

/.env.local
/logs/*.json
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20
22
1 change: 1 addition & 0 deletions .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"test": "vitest"
},
"dependencies": {
"@gearbox-protocol/sdk": "3.0.0-vfour.192",
"@gearbox-protocol/sdk": "3.0.0-vfour.194",
"node-pty": "^1.0.0",
"pino-pretty": "^13.0.0"
},
Expand Down Expand Up @@ -61,5 +61,5 @@
],
"*.{json,md}": "prettier --write"
},
"packageManager": "yarn@1.22.22+sha1.ac34549e6aa8e7ead463a7407e1c7390f61a6610"
"packageManager": "yarn@4.6.0+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728"
}
2 changes: 1 addition & 1 deletion src/config/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export const ConfigSchema = z.object({
redstoneGateways: z
.string()
.optional()
.transform(s => s?.split(",")),
.transform(s => (s ? s.split(",") : undefined)),
/**
* The serive can deploy partial liquidator contracts.
* Usage: deploy them once from local machine then pass the address to production service
Expand Down
Loading

0 comments on commit 684bb1a

Please sign in to comment.