Skip to content

Commit e52d8cd

Browse files
committed
chore: update dependencies in package.json for security
1 parent 8e2bc2f commit e52d8cd

File tree

4 files changed

+4217
-5041
lines changed

4 files changed

+4217
-5041
lines changed

.prettierrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"plugins": ["@trivago/prettier-plugin-sort-imports"],
23
"printWidth": 120,
34
"tabWidth": 2,
45
"useTabs": false,

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@
8080
"devDependencies": {
8181
"@babel/helper-string-parser": "7.25.9",
8282
"@commitlint/config-conventional": "^11.0.0",
83-
"@react-native-community/eslint-config": "^2.0.0",
83+
"@react-native-community/eslint-config": "^3.2.0",
8484
"@release-it/conventional-changelog": "^2.0.0",
85-
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
85+
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
8686
"@types/jest": "^26.0.0",
8787
"@types/react": "^18.0.12",
8888
"@types/react-native": "^0.67.8",
@@ -91,15 +91,15 @@
9191
"chalk": "4",
9292
"commitlint": "^11.0.0",
9393
"del-cli": "^4.0.1",
94-
"eslint": "^7.2.0",
94+
"eslint": "^8.57.1",
9595
"eslint-config-prettier": "^7.0.0",
9696
"eslint-plugin-prettier": "^3.1.3",
97-
"jest": "^26.0.1",
98-
"metro-react-native-babel-preset": "^0.67.0",
97+
"jest": "^29.7.0",
98+
"metro-react-native-babel-preset": "^0.76.9",
9999
"pod-install": "^0.1.0",
100-
"prettier": "^2.6.2",
101-
"react": "17.0.2",
102-
"react-native": "0.68.2",
100+
"prettier": "^3.2.5",
101+
"react": "18.3.1",
102+
"react-native": "0.76.9",
103103
"react-native-builder-bob": "^0.18.2",
104104
"release-it": "^14.2.2",
105105
"typedoc": "^0.22.16",

src/libs/BridgedQuery.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ export class BridgedQuery<T extends NativeQueryType> implements Query {
1111
return this._hasNext;
1212
}
1313

14-
constructor(protected queryKey: NativeQueryKey, protected type: T, protected binder: NativeBinder) {}
14+
constructor(
15+
protected queryKey: NativeQueryKey,
16+
protected type: T,
17+
protected binder: NativeBinder,
18+
) {}
1519

1620
async next() {
1721
this._isLoading = true;

0 commit comments

Comments
 (0)