Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
xaviergonz committed Jul 11, 2024
1 parent ed4f295 commit dd301e1
Show file tree
Hide file tree
Showing 5 changed files with 216 additions and 181 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
"codecov": "^3.8.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import-x": "^0.5.3",
"eslint-plugin-import-x": "^3.0.0",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.2",
"globals": "^15.8.0",
"netlify-cli": "^17.33.0",
"netlify-cli": "^17.33.1",
"prettier": "^3.3.2",
"prettier-plugin-organize-imports": "^4.0.0",
"turbo": "^2.0.6",
Expand Down
6 changes: 3 additions & 3 deletions packages/lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@
"mobx": "^6.0.0 || ^5.0.0 || ^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/core": "^7.24.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@swc/core": "^1.6.13",
"@swc/jest": "^0.2.36",
Expand All @@ -83,7 +83,7 @@
"rollup-plugin-typescript2": "^0.36.0",
"shx": "^0.3.4",
"spec.ts": "^1.1.3",
"ts-jest": "~29.1.5",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typedoc": "^0.26.4",
"typescript": "^5.5.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/lib/src/utils/chainFns.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export function chainFns<F extends Function>(...fns: (F | undefined)[]): F | und
let ret = v

for (let i = 0; i < definedFns.length; i++) {
ret = definedFns[i]!(ret, ...args)
ret = definedFns[i](ret, ...args)
}

return ret
Expand Down
6 changes: 3 additions & 3 deletions packages/mobx-keystone-yjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@
"yjs": "^13.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/core": "^7.24.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@babel/preset-typescript": "^7.24.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
Expand All @@ -77,7 +77,7 @@
"rollup-plugin-typescript2": "^0.36.0",
"shx": "^0.3.4",
"spec.ts": "^1.1.3",
"ts-jest": "~29.1.5",
"ts-jest": "^29.2.2",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"vite": "^5.3.3"
Expand Down
Loading

0 comments on commit dd301e1

Please sign in to comment.