Skip to content

Commit df70071

Browse files
author
woi
committed
update all dependencies out reduxsauce
1 parent bfb44a7 commit df70071

File tree

4 files changed

+640
-553
lines changed

4 files changed

+640
-553
lines changed

App/Sagas/index.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
import { takeLatest } from 'redux-saga/effects'
1+
import { takeLatest, all } from 'redux-saga/effects'
22
import { ExampleTypes } from 'App/Stores/Example/Actions'
33
import { StartupTypes } from 'App/Stores/Startup/Actions'
44
import { fetchTemperature } from './ExampleSaga'
55
import { startup } from './StartupSaga'
66

77
export default function* root() {
8-
yield [
8+
console.log('index.js saga')
9+
yield all([
910
/**
1011
* @see https://redux-saga.js.org/docs/basics/UsingSagaHelpers.html
1112
*/
1213
// Run the startup saga when the application starts
1314
takeLatest(StartupTypes.STARTUP, startup),
1415
// Call `fetchTemperature()` when a `FETCH_TEMPERATURE` action is triggered
1516
takeLatest(ExampleTypes.FETCH_TEMPERATURE, fetchTemperature),
16-
]
17-
}
17+
])
18+
}

ios/Boilerplate.xcodeproj/project.pbxproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
5E9157361DD0AC6A00FF2AA8 /* libRCTAnimation.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E9157331DD0AC6500FF2AA8 /* libRCTAnimation.a */; };
3838
832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 832341B51AAA6A8300B99B32 /* libRCTText.a */; };
3939
ADBDB9381DFEBF1600ED6528 /* libRCTBlob.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ADBDB9271DFEBF0700ED6528 /* libRCTBlob.a */; };
40-
D336128A50B740C8BF618D7E /* libRNGestureHandler.a in Frameworks */ = {isa = PBXBuildFile; fileRef = ECCB696293D84B68A85BBEA4 /* libRNGestureHandler.a */; };
40+
EB3251F4A8874C20AF52B0AC /* libRNGestureHandler.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 83ECEED7B35A43E39016D8EF /* libRNGestureHandler.a */; };
4141
/* End PBXBuildFile section */
4242

4343
/* Begin PBXContainerItemProxy section */
@@ -343,8 +343,8 @@
343343
78C398B01ACF4ADC00677621 /* RCTLinking.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTLinking.xcodeproj; path = "../node_modules/react-native/Libraries/LinkingIOS/RCTLinking.xcodeproj"; sourceTree = "<group>"; };
344344
832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTText.xcodeproj; path = "../node_modules/react-native/Libraries/Text/RCTText.xcodeproj"; sourceTree = "<group>"; };
345345
ADBDB91F1DFEBF0600ED6528 /* RCTBlob.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = RCTBlob.xcodeproj; path = "../node_modules/react-native/Libraries/Blob/RCTBlob.xcodeproj"; sourceTree = "<group>"; };
346-
2D31CC30FEE6443E8668C818 /* RNGestureHandler.xcodeproj */ = {isa = PBXFileReference; name = "RNGestureHandler.xcodeproj"; path = "../node_modules/react-native-gesture-handler/ios/RNGestureHandler.xcodeproj"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; };
347-
ECCB696293D84B68A85BBEA4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; name = "libRNGestureHandler.a"; path = "libRNGestureHandler.a"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; };
346+
E57D616985D64DA295E38FCD /* RNGestureHandler.xcodeproj */ = {isa = PBXFileReference; name = "RNGestureHandler.xcodeproj"; path = "../node_modules/react-native-gesture-handler/ios/RNGestureHandler.xcodeproj"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = wrapper.pb-project; explicitFileType = undefined; includeInIndex = 0; };
347+
83ECEED7B35A43E39016D8EF /* libRNGestureHandler.a */ = {isa = PBXFileReference; name = "libRNGestureHandler.a"; path = "libRNGestureHandler.a"; sourceTree = "<group>"; fileEncoding = undefined; lastKnownFileType = archive.ar; explicitFileType = undefined; includeInIndex = 0; };
348348
/* End PBXFileReference section */
349349

350350
/* Begin PBXFrameworksBuildPhase section */
@@ -373,7 +373,7 @@
373373
832341BD1AAA6AB300B99B32 /* libRCTText.a in Frameworks */,
374374
00C302EA1ABCBA2D00DB3ED1 /* libRCTVibration.a in Frameworks */,
375375
139FDEF61B0652A700C62182 /* libRCTWebSocket.a in Frameworks */,
376-
D336128A50B740C8BF618D7E /* libRNGestureHandler.a in Frameworks */,
376+
EB3251F4A8874C20AF52B0AC /* libRNGestureHandler.a in Frameworks */,
377377
);
378378
runOnlyForDeploymentPostprocessing = 0;
379379
};
@@ -560,7 +560,7 @@
560560
832341B01AAA6A8300B99B32 /* RCTText.xcodeproj */,
561561
00C302DF1ABCB9EE00DB3ED1 /* RCTVibration.xcodeproj */,
562562
139FDEE61B06529A00C62182 /* RCTWebSocket.xcodeproj */,
563-
2D31CC30FEE6443E8668C818 /* RNGestureHandler.xcodeproj */,
563+
E57D616985D64DA295E38FCD /* RNGestureHandler.xcodeproj */,
564564
);
565565
name = Libraries;
566566
sourceTree = "<group>";

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@
1212
"rename": "react-native-rename"
1313
},
1414
"dependencies": {
15-
"apisauce": "^0.15.2",
15+
"apisauce": "^1.0.2",
1616
"immutable": "^3.8.2",
17-
"prop-types": "^15.6.1",
17+
"prop-types": "15.6.2",
1818
"react": "16.6.3",
1919
"react-native": "0.57.8",
2020
"react-native-gesture-handler": "^1.0.15",
21-
"react-navigation": "^3.0.0",
22-
"react-redux": "^5.0.7",
23-
"redux": "^3.7.2",
24-
"redux-persist": "^5.9.1",
21+
"react-navigation": "3.1.2",
22+
"react-redux": "6.0.0",
23+
"redux": "^4.0.1",
24+
"redux-persist": "5.10.0",
2525
"redux-persist-transform-immutable": "^5.0.0",
26-
"redux-saga": "^0.16.0",
26+
"redux-saga": "^1.0.0",
2727
"reduxsauce": "^0.7.0"
2828
},
2929
"devDependencies": {

0 commit comments

Comments
 (0)