Skip to content

Commit 640b6fc

Browse files
committed
v0.10.3: Updates dependencies
1 parent 38a8928 commit 640b6fc

File tree

5 files changed

+302
-480
lines changed

5 files changed

+302
-480
lines changed

.nvmrc

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

example/android/app/src/main/java/com/reactnativestaticserverexample/MainApplication.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ class MainApplication : Application(), ReactApplication {
1616

1717
override val reactNativeHost: ReactNativeHost =
1818
object : DefaultReactNativeHost(this) {
19-
override fun getPackages(): List<ReactPackage> {
20-
// Packages that cannot be autolinked yet can be added manually here, for example:
21-
// packages.add(new MyReactNativePackage());
22-
return PackageList(this).packages
23-
}
19+
override fun getPackages(): List<ReactPackage> =
20+
PackageList(this).packages.apply {
21+
// Packages that cannot be autolinked yet can be added manually here, for example:
22+
// add(MyReactNativePackage())
23+
}
2424

2525
override fun getJSMainModuleName(): String = "index"
2626

example/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@
1414
"dependencies": {
1515
"@dr.pogodin/react-native-fs": "^2.22.0-alpha.1",
1616
"react": "18.2.0",
17-
"react-native": "0.73.1",
17+
"react-native": "0.73.2",
1818
"react-native-webview": "^13.6.4",
19-
"react-native-windows": "^0.73.2"
19+
"react-native-windows": "^0.73.4"
2020
},
2121
"devDependencies": {
2222
"@babel/core": "^7.23.7",
23-
"@babel/preset-env": "^7.23.7",
24-
"@babel/runtime": "^7.23.7",
25-
"@react-native/babel-preset": "^0.73.18",
26-
"@react-native/metro-config": "^0.73.2",
23+
"@babel/preset-env": "^7.23.8",
24+
"@babel/runtime": "^7.23.8",
25+
"@react-native/babel-preset": "^0.73.19",
26+
"@react-native/metro-config": "^0.73.3",
2727
"@react-native/typescript-config": "^0.73.1",
2828
"babel-plugin-module-resolver": "^5.0.0",
29-
"metro-config": "^0.80.3",
30-
"pod-install": "^0.1.39"
29+
"metro-config": "^0.80.4",
30+
"pod-install": "^0.2.0"
3131
},
3232
"engines": {
3333
"node": ">=18"

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@dr.pogodin/react-native-static-server",
3-
"version": "0.10.2",
3+
"version": "0.10.3",
44
"description": "HTTP static file server for React Native",
55
"main": "lib/commonjs/index",
66
"module": "lib/module/index",
@@ -51,22 +51,22 @@
5151
},
5252
"devDependencies": {
5353
"@dr.pogodin/react-native-fs": "^2.22.0-alpha.1",
54-
"@react-native/eslint-config": "^0.74.0",
54+
"@react-native/eslint-config": "^0.73.2",
5555
"@types/jest": "^29.5.11",
56-
"@types/react": "^18.2.46",
56+
"@types/react": "^18.2.48",
5757
"@types/uuid": "^9.0.7",
5858
"del-cli": "^5.1.0",
5959
"eslint": "^8.56.0",
6060
"eslint-config-prettier": "^9.1.0",
61-
"eslint-plugin-prettier": "^5.1.2",
61+
"eslint-plugin-prettier": "^5.1.3",
6262
"jest": "^29.7.0",
63-
"metro-config": "^0.80.3",
64-
"pod-install": "^0.1.39",
65-
"prettier": "^3.1.1",
63+
"metro-config": "^0.80.4",
64+
"pod-install": "^0.2.0",
65+
"prettier": "^3.2.4",
6666
"react": "18.2.0",
67-
"react-native": "0.73.1",
67+
"react-native": "0.73.2",
6868
"react-native-builder-bob": "^0.23.2",
69-
"react-native-windows": "^0.73.2",
69+
"react-native-windows": "^0.73.4",
7070
"typescript": "^5.3.3"
7171
},
7272
"resolutions": {
@@ -146,6 +146,6 @@
146146
}
147147
},
148148
"dependencies": {
149-
"@dr.pogodin/js-utils": "^0.0.6"
149+
"@dr.pogodin/js-utils": "^0.0.7"
150150
}
151151
}

0 commit comments

Comments
 (0)