Skip to content

Commit 1c7667d

Browse files
committed
v0.13.0: Update of dependencies
1 parent 038d9fd commit 1c7667d

File tree

6 files changed

+637
-821
lines changed

6 files changed

+637
-821
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defaults: &defaults
22
docker:
33
- image: cimg/node:lts
44

5-
version: 2
5+
version: 2.1
66
jobs:
77
test:
88
<<: *defaults

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v20.11.1
1+
v20.12.2

example/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@
1212
"windows": "react-native run-windows"
1313
},
1414
"dependencies": {
15-
"@dr.pogodin/react-native-fs": "^2.24.1",
15+
"@dr.pogodin/react-native-fs": "^2.24.4",
1616
"react": "18.2.0",
1717
"react-native": "0.73.6",
18-
"react-native-webview": "^13.8.1",
19-
"react-native-windows": "^0.73.10"
18+
"react-native-webview": "^13.8.4",
19+
"react-native-windows": "^0.73.11"
2020
},
2121
"devDependencies": {
22-
"@babel/core": "^7.24.0",
23-
"@babel/preset-env": "^7.24.0",
24-
"@babel/runtime": "^7.24.0",
22+
"@babel/core": "^7.24.4",
23+
"@babel/preset-env": "^7.24.4",
24+
"@babel/runtime": "^7.24.4",
2525
"@react-native/babel-preset": "^0.73.21",
2626
"@react-native/metro-config": "^0.73.5",
2727
"@react-native/typescript-config": "^0.73.1",
2828
"babel-plugin-module-resolver": "^5.0.0",
29-
"metro-config": "^0.80.6",
29+
"metro-config": "^0.80.8",
3030
"pod-install": "^0.2.0"
3131
},
3232
"engines": {

example/src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export default function App() {
181181
<WebView
182182
cacheMode="LOAD_NO_CACHE"
183183
// This way we can receive messages sent by the WebView content.
184-
onMessage={(event) => {
184+
onMessage={(event: any) => {
185185
const message = event.nativeEvent.data;
186186
Alert.alert('Got a message from the WebView content', message);
187187
}}
@@ -192,7 +192,7 @@ export default function App() {
192192
// there when links inside WebView are pressed. However, it is worth
193193
// to re-test, troubleshoot, and probably fix. It works fine both
194194
// Android and iOS.
195-
onShouldStartLoadWithRequest={(request) => {
195+
onShouldStartLoadWithRequest={(request: any) => {
196196
const load = request.url.startsWith(origin);
197197
if (!load) {
198198
Linking.openURL(request.url);

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,24 +50,24 @@
5050
"registry": "https://registry.npmjs.org/"
5151
},
5252
"devDependencies": {
53-
"@dr.pogodin/react-native-fs": "^2.24.1",
53+
"@dr.pogodin/react-native-fs": "^2.24.4",
5454
"@react-native/eslint-config": "^0.73.2",
5555
"@types/jest": "^29.5.12",
56-
"@types/react": "^18.2.66",
56+
"@types/react": "^18.2.77",
5757
"@types/uuid": "^9.0.8",
5858
"del-cli": "^5.1.0",
5959
"eslint": "^8.57.0",
6060
"eslint-config-prettier": "^9.1.0",
6161
"eslint-plugin-prettier": "^5.1.3",
6262
"jest": "^29.7.0",
63-
"metro-config": "^0.80.6",
63+
"metro-config": "^0.80.8",
6464
"pod-install": "^0.2.0",
6565
"prettier": "^3.2.5",
6666
"react": "18.2.0",
6767
"react-native": "0.73.6",
6868
"react-native-builder-bob": "^0.23.2",
69-
"react-native-windows": "^0.73.10",
70-
"typescript": "^5.4.2"
69+
"react-native-windows": "^0.73.11",
70+
"typescript": "^5.4.5"
7171
},
7272
"resolutions": {
7373
"@types/react": "^18.2.48"

0 commit comments

Comments
 (0)