Skip to content

Commit c8382ad

Browse files
authored
chore: bump deps (#767)
1 parent 3bee632 commit c8382ad

File tree

4 files changed

+878
-696
lines changed

4 files changed

+878
-696
lines changed

.prettierrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"printWidth": 100,
23
"singleQuote": true,
3-
"printWidth": 100
4+
"trailingComma": "es5"
45
}

client/utils/retry.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ function runWithRetry(callback, maxRetries) {
88

99
callback();
1010
} catch (err) {
11-
setTimeout(function () {
12-
executeWithRetryAndTimeout(currentCount + 1);
13-
}, Math.pow(10, currentCount));
11+
setTimeout(
12+
function () {
13+
executeWithRetryAndTimeout(currentCount + 1);
14+
},
15+
Math.pow(10, currentCount)
16+
);
1417
}
1518
}
1619

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,16 @@
7474
"@types/jest": "^27.0.1",
7575
"@types/json-schema": "^7.0.6",
7676
"@types/module-alias": "^2.0.0",
77-
"@types/node": "^18.7.21",
77+
"@types/node": "^20.5.0",
7878
"@types/semver": "^7.3.9",
7979
"@types/webpack": "^5.28.0",
8080
"babel-loader": "^8.1.0",
8181
"cross-env": "^7.0.3",
8282
"cross-spawn": "^7.0.3",
8383
"del-cli": "^4.0.1",
8484
"eslint": "^8.6.0",
85-
"eslint-config-prettier": "^8.3.0",
86-
"eslint-plugin-prettier": "^4.0.0",
85+
"eslint-config-prettier": "^9.0.0",
86+
"eslint-plugin-prettier": "^5.0.0",
8787
"fs-extra": "^10.0.0",
8888
"get-port": "^5.1.1",
8989
"jest": "^27.0.5",
@@ -93,13 +93,13 @@
9393
"module-alias": "^2.2.2",
9494
"nanoid": "^3.1.31",
9595
"npm-run-all": "^4.1.5",
96-
"prettier": "^2.3.0",
96+
"prettier": "^3.0.1",
9797
"puppeteer": "^13.4.0",
9898
"react-refresh": "^0.14.0",
9999
"semver": "^7.5.2",
100100
"sourcemap-validator": "^2.1.0",
101-
"type-fest": "^3.0.0",
102-
"typescript": "~4.8.4",
101+
"type-fest": "^4.0.0",
102+
"typescript": "~5.1.6",
103103
"webpack": "^5.76.0",
104104
"webpack-cli": "^4.7.2",
105105
"webpack-cli.legacy": "npm:[email protected]",
@@ -115,7 +115,7 @@
115115
"@types/webpack": "4.x || 5.x",
116116
"react-refresh": ">=0.10.0 <1.0.0",
117117
"sockjs-client": "^1.4.0",
118-
"type-fest": ">=0.17.0 <4.0.0",
118+
"type-fest": ">=0.17.0 <5.0.0",
119119
"webpack": ">=4.43.0 <6.0.0",
120120
"webpack-dev-server": "3.x || 4.x",
121121
"webpack-hot-middleware": "2.x",
@@ -142,7 +142,7 @@
142142
}
143143
},
144144
"resolutions": {
145-
"type-fest": "3.2.0"
145+
"type-fest": "^4.0.0"
146146
},
147147
"engines": {
148148
"node": ">= 10.13"

0 commit comments

Comments
 (0)