Browse Source

[RN] Update react-native to 0.55.4

Also bump React to 16.3.2, since it's required.
master
Saúl Ibarra Corretgé 7 years ago
parent
commit
2b7976380e

+ 7
- 18
.flowconfig View File

@@ -16,17 +16,12 @@
16 16
 ; Ignore polyfills
17 17
 .*/Libraries/polyfills/.*
18 18
 
19
+; Ignore metro
20
+.*/node_modules/metro/.*
21
+
19 22
 ; Ignore packages in node_modules which we (i.e. the jitsi-meet project) have
20 23
 ; seen to cause errors and we have chosen not to fix.
21 24
 .*/node_modules/@atlaskit/.*/*.js.flow
22
-.*/node_modules/@atlassian
23
-.*/node_modules/bower/lib/node_modules/bower-json/test/.*
24
-.*/node_modules/immutable/dist/immutable.js.flow
25
-.*/node_modules/jsonlint/test/.*
26
-
27
-; FIXME Remove once we update past commit
28
-; https://github.com/facebook/react-native/commit/df8d0d1db9203cc87ad3682e6138b2a9ed714365
29
-.*/node_modules/react-native/local-cli/link/link.js
30 25
 .*/node_modules/react-native-keep-awake/.*
31 26
 .*/node_modules/styled-components/.*
32 27
 
@@ -37,6 +32,7 @@
37 32
 [libs]
38 33
 node_modules/react-native/Libraries/react-native/react-native-interface.js
39 34
 node_modules/react-native/flow/
35
+node_modules/react-native/flow-github/
40 36
 
41 37
 [options]
42 38
 emoji=true
@@ -45,25 +41,18 @@ module.system=haste
45 41
 
46 42
 munge_underscores=true
47 43
 
48
-; FIXME Remove once we update past commit
49
-; https://github.com/facebook/react-native/commit/df8d0d1db9203cc87ad3682e6138b2a9ed714365
50
-module.name_mapper='^./link/link$' -> 'emptyObject'
51
-
52 44
 module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
53 45
 
54 46
 suppress_type=$FlowIssue
55 47
 suppress_type=$FlowFixMe
56 48
 suppress_type=$FlowFixMeProps
57 49
 suppress_type=$FlowFixMeState
58
-suppress_type=$FixMe
59 50
 
60
-suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-7]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
61
-suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-7]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
51
+suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
52
+suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(<VERSION>\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
62 53
 suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
63 54
 suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
64 55
 
65
-unsafe.enable_getters_and_setters=true
66
-
67 56
 ; We (i.e. the jitsi-meet project) are using the haste module system on Web as
68 57
 ; well, not only on React Native. Unfortunately, Flow does not support .web.js
69 58
 ; by default. Override Flow's defaults to include .web.js as well. Technically,
@@ -77,4 +66,4 @@ module.file_ext=.jsx
77 66
 module.file_ext=.json
78 67
 
79 68
 [version]
80
-^0.57.0
69
+^0.67.0

+ 2154
- 369
flow-typed/npm/lodash_v4.x.x.js
File diff suppressed because it is too large
View File


+ 1
- 3
flow-typed/npm/prop-types_v15.x.x.js View File

@@ -1,6 +1,3 @@
1
-// flow-typed signature: 3eaa1f24c7397b78a7481992d2cddcb2
2
-// flow-typed version: a1a20d4928/prop-types_v15.x.x/flow_>=v0.41.x
3
-
4 1
 type $npm$propTypes$ReactPropsCheckType = (
5 2
   props: any,
6 3
   propName: string,
@@ -14,6 +11,7 @@ declare module 'prop-types' {
14 11
   declare var number: React$PropType$Primitive<number>;
15 12
   declare var object: React$PropType$Primitive<Object>;
16 13
   declare var string: React$PropType$Primitive<string>;
14
+  declare var symbol: React$PropType$Primitive<Symbol>;
17 15
   declare var any: React$PropType$Primitive<any>;
18 16
   declare var arrayOf: React$PropType$ArrayOf;
19 17
   declare var element: React$PropType$Primitive<any>; /* TODO */

+ 139
- 117
flow-typed/npm/react-redux_v5.x.x.js View File

@@ -1,132 +1,154 @@
1
-// flow-typed signature: 59b0c4be0e1408f21e2446be96c79804
2
-// flow-typed version: 9092387fd2/react-redux_v5.x.x/flow_>=v0.54.x
3
-
4 1
 import type { Dispatch, Store } from "redux";
5 2
 
6 3
 declare module "react-redux" {
7
-  /*
8
-
9
-    S = State
10
-    A = Action
11
-    OP = OwnProps
12
-    SP = StateProps
13
-    DP = DispatchProps
14
-
15
-  */
4
+  import type { ComponentType, ElementConfig } from 'react';
16 5
 
17
-  declare type MapStateToProps<S, OP: Object, SP: Object> = (
18
-    state: S,
19
-    ownProps: OP
20
-  ) => ((state: S, ownProps: OP) => SP) | SP;
21
-
22
-  declare type MapDispatchToProps<A, OP: Object, DP: Object> =
23
-    | ((dispatch: Dispatch<A>, ownProps: OP) => DP)
24
-    | DP;
25
-
26
-  declare type MergeProps<SP, DP: Object, OP: Object, P: Object> = (
27
-    stateProps: SP,
28
-    dispatchProps: DP,
29
-    ownProps: OP
30
-  ) => P;
31
-
32
-  declare type Context = { store: Store<*, *> };
33
-
34
-  declare type ComponentWithDefaultProps<DP: {}, P: {}, CP: P> = Class<
35
-    React$Component<CP>
36
-  > & { defaultProps: DP };
37
-
38
-  declare class ConnectedComponentWithDefaultProps<
39
-    OP,
40
-    DP,
41
-    CP
42
-  > extends React$Component<OP> {
43
-    static defaultProps: DP, // <= workaround for https://github.com/facebook/flow/issues/4644
44
-    static WrappedComponent: Class<React$Component<CP>>,
45
-    getWrappedInstance(): React$Component<CP>,
46
-    props: OP,
47
-    state: void
48
-  }
49
-
50
-  declare class ConnectedComponent<OP, P> extends React$Component<OP> {
51
-    static WrappedComponent: Class<React$Component<P>>,
52
-    getWrappedInstance(): React$Component<P>,
53
-    props: OP,
54
-    state: void
55
-  }
56
-
57
-  declare type ConnectedComponentWithDefaultPropsClass<OP, DP, CP> = Class<
58
-    ConnectedComponentWithDefaultProps<OP, DP, CP>
59
-  >;
60
-
61
-  declare type ConnectedComponentClass<OP, P> = Class<
62
-    ConnectedComponent<OP, P>
63
-  >;
64
-
65
-  declare type Connector<OP, P> = (<DP: {}, CP: {}>(
66
-    component: ComponentWithDefaultProps<DP, P, CP>
67
-  ) => ConnectedComponentWithDefaultPropsClass<OP, DP, CP>) &
68
-    ((component: React$ComponentType<P>) => ConnectedComponentClass<OP, P>);
69
-
70
-  declare class Provider<S, A> extends React$Component<{
6
+  declare export class Provider<S, A> extends React$Component<{
71 7
     store: Store<S, A>,
72 8
     children?: any
73 9
   }> {}
74 10
 
75
-  declare function createProvider(
11
+  declare export function createProvider(
76 12
     storeKey?: string,
77 13
     subKey?: string
78 14
   ): Provider<*, *>;
79 15
 
80
-  declare type ConnectOptions = {
16
+  /*
17
+
18
+  S = State
19
+  A = Action
20
+  OP = OwnProps
21
+  SP = StateProps
22
+  DP = DispatchProps
23
+  MP = Merge props
24
+  MDP = Map dispatch to props object
25
+  RSP = Returned state props
26
+  RDP = Returned dispatch props
27
+  RMP = Returned merge props
28
+  CP = Props for returned component
29
+  Com = React Component
30
+  */
31
+
32
+  declare type MapStateToProps<S: Object, SP: Object, RSP: Object> = (state: S, props: SP) => RSP;
33
+
34
+  declare type MapDispatchToProps<A, OP: Object, RDP: Object> = (dispatch: Dispatch<A>, ownProps: OP) => RDP;
35
+
36
+  declare type MergeProps<SP: Object, DP: Object, MP: Object, RMP: Object> = (
37
+    stateProps: SP,
38
+    dispatchProps: DP,
39
+    ownProps: MP
40
+  ) => RMP;
41
+
42
+  declare type ConnectOptions<S: Object, OP: Object, RSP: Object, RMP: Object> = {|
81 43
     pure?: boolean,
82
-    withRef?: boolean
44
+    withRef?: boolean,
45
+    areStatesEqual?: (next: S, prev: S) => boolean,
46
+    areOwnPropsEqual?: (next: OP, prev: OP) => boolean,
47
+    areStatePropsEqual?: (next: RSP, prev: RSP) => boolean,
48
+    areMergedPropsEqual?: (next: RMP, prev: RMP) => boolean,
49
+    storeKey?: string
50
+  |};
51
+
52
+  declare type OmitDispatch<Component> = $Diff<Component, {dispatch: Dispatch<*>}>;
53
+
54
+  declare export function connect<
55
+    Com: ComponentType<*>,
56
+    S: Object,
57
+    DP: Object,
58
+    RSP: Object,
59
+    CP: $Diff<OmitDispatch<ElementConfig<Com>>, RSP>
60
+    >(
61
+    mapStateToProps: MapStateToProps<S, DP, RSP>,
62
+    mapDispatchToProps?: null
63
+  ): (component: Com) => ComponentType<CP & DP>;
64
+
65
+  declare export function connect<Com: ComponentType<*>>(
66
+    mapStateToProps?: null,
67
+    mapDispatchToProps?: null
68
+  ): (component: Com) => ComponentType<OmitDispatch<ElementConfig<Com>>>;
69
+
70
+  declare export function connect<
71
+    Com: ComponentType<*>,
72
+    A,
73
+    S: Object,
74
+    DP: Object,
75
+    SP: Object,
76
+    RSP: Object,
77
+    RDP: Object,
78
+    CP: $Diff<$Diff<ElementConfig<Com>, RSP>, RDP>
79
+    >(
80
+    mapStateToProps: MapStateToProps<S, SP, RSP>,
81
+    mapDispatchToProps: MapDispatchToProps<A, DP, RDP>
82
+  ): (component: Com) => ComponentType<CP & SP & DP>;
83
+
84
+  declare export function connect<
85
+    Com: ComponentType<*>,
86
+    A,
87
+    OP: Object,
88
+    DP: Object,
89
+    PR: Object,
90
+    CP: $Diff<ElementConfig<Com>, DP>
91
+    >(
92
+    mapStateToProps?: null,
93
+    mapDispatchToProps: MapDispatchToProps<A, OP, DP>
94
+  ): (Com) => ComponentType<CP & OP>;
95
+
96
+  declare export function connect<
97
+    Com: ComponentType<*>,
98
+    MDP: Object
99
+    >(
100
+    mapStateToProps?: null,
101
+    mapDispatchToProps: MDP
102
+  ): (component: Com) => ComponentType<$Diff<ElementConfig<Com>, MDP>>;
103
+
104
+  declare export function connect<
105
+    Com: ComponentType<*>,
106
+    S: Object,
107
+    SP: Object,
108
+    RSP: Object,
109
+    MDP: Object,
110
+    CP: $Diff<ElementConfig<Com>, RSP>
111
+    >(
112
+    mapStateToProps: MapStateToProps<S, SP, RSP>,
113
+    mapDispatchToPRops: MDP
114
+  ): (component: Com) => ComponentType<$Diff<CP, MDP> & SP>;
115
+
116
+  declare export function connect<
117
+    Com: ComponentType<*>,
118
+    A,
119
+    S: Object,
120
+    DP: Object,
121
+    SP: Object,
122
+    RSP: Object,
123
+    RDP: Object,
124
+    MP: Object,
125
+    RMP: Object,
126
+    CP: $Diff<ElementConfig<Com>, RMP>
127
+    >(
128
+    mapStateToProps: MapStateToProps<S, SP, RSP>,
129
+    mapDispatchToProps: ?MapDispatchToProps<A, DP, RDP>,
130
+    mergeProps: MergeProps<RSP, RDP, MP, RMP>
131
+  ): (component: Com) => ComponentType<CP & SP & DP & MP>;
132
+
133
+  declare export function connect<Com: ComponentType<*>,
134
+    A,
135
+    S: Object,
136
+    DP: Object,
137
+    SP: Object,
138
+    RSP: Object,
139
+    RDP: Object,
140
+    MP: Object,
141
+    RMP: Object
142
+    >(
143
+    mapStateToProps: ?MapStateToProps<S, SP, RSP>,
144
+    mapDispatchToProps: ?MapDispatchToProps<A, DP, RDP>,
145
+    mergeProps: ?MergeProps<RSP, RDP, MP, RMP>,
146
+    options: ConnectOptions<S, SP & DP & MP, RSP, RMP>
147
+  ): (component: Com) => ComponentType<$Diff<ElementConfig<Com>, RMP> & SP & DP & MP>;
148
+
149
+  declare export default {
150
+    Provider: typeof Provider,
151
+    createProvider: typeof createProvider,
152
+    connect: typeof connect,
83 153
   };
84
-
85
-  declare type Null = null | void;
86
-
87
-  declare function connect<A, OP>(
88
-    ...rest: Array<void> // <= workaround for https://github.com/facebook/flow/issues/2360
89
-  ): Connector<OP, $Supertype<{ dispatch: Dispatch<A> } & OP>>;
90
-
91
-  declare function connect<A, OP>(
92
-    mapStateToProps: Null,
93
-    mapDispatchToProps: Null,
94
-    mergeProps: Null,
95
-    options: ConnectOptions
96
-  ): Connector<OP, $Supertype<{ dispatch: Dispatch<A> } & OP>>;
97
-
98
-//  declare function connect<S, A, OP, SP>(
99
-//    mapStateToProps: MapStateToProps<S, OP, SP>,
100
-//    mapDispatchToProps: Null,
101
-//    mergeProps: Null,
102
-//    options?: ConnectOptions
103
-//  ): Connector<OP, $Supertype<SP & { dispatch: Dispatch<A> } & OP>>;
104
-
105
-  declare function connect<A, OP, DP>(
106
-    mapStateToProps: Null,
107
-    mapDispatchToProps: MapDispatchToProps<A, OP, DP>,
108
-    mergeProps: Null,
109
-    options?: ConnectOptions
110
-  ): Connector<OP, $Supertype<DP & OP>>;
111
-
112
-  declare function connect<S, A, OP, SP, DP>(
113
-    mapStateToProps: MapStateToProps<S, OP, SP>,
114
-    mapDispatchToProps: MapDispatchToProps<A, OP, DP> | Null,
115
-    mergeProps: Null,
116
-    options?: ConnectOptions
117
-  ): Connector<OP, $Supertype<SP & DP & OP>>;
118
-
119
-  declare function connect<S, A, OP, SP, DP, P>(
120
-    mapStateToProps: MapStateToProps<S, OP, SP>,
121
-    mapDispatchToProps: Null,
122
-    mergeProps: MergeProps<SP, DP, OP, P>,
123
-    options?: ConnectOptions
124
-  ): Connector<OP, P>;
125
-
126
-  declare function connect<S, A, OP, SP, DP, P>(
127
-    mapStateToProps: MapStateToProps<S, OP, SP>,
128
-    mapDispatchToProps: MapDispatchToProps<A, OP, DP>,
129
-    mergeProps: MergeProps<SP, DP, OP, P>,
130
-    options?: ConnectOptions
131
-  ): Connector<OP, P>;
132 154
 }

+ 3
- 6
flow-typed/npm/redux_v3.x.x.js View File

@@ -1,6 +1,3 @@
1
-// flow-typed signature: ec7daead5cb4fec5ab25fedbedef29e8
2
-// flow-typed version: 2c04631d20/redux_v3.x.x/flow_>=v0.55.x
3
-
4 1
 declare module 'redux' {
5 2
 
6 3
   /*
@@ -27,7 +24,7 @@ declare module 'redux' {
27 24
     replaceReducer(nextReducer: Reducer<S, A>): void
28 25
   };
29 26
 
30
-  declare export type Reducer<S, A> = (state: S, action: A) => S;
27
+  declare export type Reducer<S, A> = (state: S | void, action: A) => S;
31 28
 
32 29
   declare export type CombinedReducer<S, A> = (state: $Shape<S> & {} | void, action: A) => S;
33 30
 
@@ -43,7 +40,7 @@ declare module 'redux' {
43 40
   declare export type StoreEnhancer<S, A, D = Dispatch<A>> = (next: StoreCreator<S, A, D>) => StoreCreator<S, A, D>;
44 41
 
45 42
   declare export function createStore<S, A, D>(reducer: Reducer<S, A>, enhancer?: StoreEnhancer<S, A, D>): Store<S, A, D>;
46
-  declare export function createStore<S, A, D>(reducer: Reducer<S, A>, preloadedState: S, enhancer?: StoreEnhancer<S, A, D>): Store<S, A, D>;
43
+  declare export function createStore<S, A, D>(reducer: Reducer<S, A>, preloadedState?: S, enhancer?: StoreEnhancer<S, A, D>): Store<S, A, D>;
47 44
 
48 45
   declare export function applyMiddleware<S, A, D>(...middlewares: Array<Middleware<S, A, D>>): StoreEnhancer<S, A, D>;
49 46
 
@@ -56,4 +53,4 @@ declare module 'redux' {
56 53
   declare export function combineReducers<O: Object, A>(reducers: O): CombinedReducer<$ObjMap<O, <S>(r: Reducer<S, any>) => S>, A>;
57 54
 
58 55
   declare export var compose: $Compose;
59
-}
56
+}

+ 22
- 4
flow-typed/npm/uuid_v3.x.x.js View File

@@ -1,6 +1,3 @@
1
-// flow-typed signature: 615e568e95029d58f116dd157e320137
2
-// flow-typed version: 2b95c0dfc1/uuid_v3.x.x/flow_>=v0.32.x
3
-
4 1
 declare module "uuid" {
5 2
   declare class uuid {
6 3
     static (
@@ -52,6 +49,23 @@ declare module "uuid/v1" {
52 49
   declare module.exports: Class<v1>;
53 50
 }
54 51
 
52
+declare module "uuid/v3" {
53
+  declare class v3 {
54
+    static (
55
+      name?: string | number[],
56
+      namespace?: string | number[],
57
+      buffer?: number[] | Buffer,
58
+      offset?: number
59
+    ): string,
60
+
61
+     static name: string,
62
+     static DNS: string,
63
+     static URL: string
64
+  }
65
+
66
+  declare module.exports: Class<v3>;
67
+}
68
+
55 69
 declare module "uuid/v4" {
56 70
   declare class v4 {
57 71
     static (
@@ -74,7 +88,11 @@ declare module "uuid/v5" {
74 88
       namespace?: string | number[],
75 89
       buffer?: number[] | Buffer,
76 90
       offset?: number
77
-    ): string
91
+    ): string,
92
+
93
+     static name: string,
94
+     static DNS: string,
95
+     static URL: string
78 96
   }
79 97
 
80 98
   declare module.exports: Class<v5>;

+ 2
- 2
ios/Podfile View File

@@ -21,8 +21,8 @@ target 'JitsiMeet' do
21 21
 
22 22
   pod 'DoubleConversion',
23 23
     :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
24
-  pod 'GLog',
25
-    :podspec => '../node_modules/react-native/third-party-podspecs/GLog.podspec'
24
+  pod 'glog',
25
+    :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
26 26
   pod 'Folly',
27 27
     :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
28 28
 

+ 36
- 48
ios/Podfile.lock View File

@@ -1,27 +1,13 @@
1 1
 PODS:
2
-  - boost (1.59.0):
3
-    - boost/graph-includes (= 1.59.0)
4
-    - boost/math-includes (= 1.59.0)
5
-    - boost/numeric-includes (= 1.59.0)
6
-    - boost/pointer_cast-includes (= 1.59.0)
7
-    - boost/preprocessor-includes (= 1.59.0)
8
-    - boost/shared_ptr-includes (= 1.59.0)
9
-    - boost/string_algorithms-includes (= 1.59.0)
10
-  - boost/graph-includes (1.59.0)
11
-  - boost/math-includes (1.59.0)
12
-  - boost/numeric-includes (1.59.0)
13
-  - boost/pointer_cast-includes (1.59.0)
14
-  - boost/preprocessor-includes (1.59.0)
15
-  - boost/shared_ptr-includes (1.59.0)
16
-  - boost/string_algorithms-includes (1.59.0)
2
+  - boost-for-react-native (1.63.0)
17 3
   - DoubleConversion (1.1.5)
18 4
   - Folly (2016.09.26.00):
19
-    - boost
5
+    - boost-for-react-native
20 6
     - DoubleConversion
21
-    - GLog
22
-  - GLog (0.3.4)
23
-  - React (0.51.0):
24
-    - React/Core (= 0.51.0)
7
+    - glog
8
+  - glog (0.3.4)
9
+  - React (0.55.4):
10
+    - React/Core (= 0.55.4)
25 11
   - react-native-background-timer (2.0.0):
26 12
     - React
27 13
   - react-native-calendar-events (1.5.0):
@@ -34,40 +20,42 @@ PODS:
34 20
     - React
35 21
   - react-native-webrtc (1.58.2):
36 22
     - React
37
-  - React/Core (0.51.0):
38
-    - yoga (= 0.51.0.React)
39
-  - React/CxxBridge (0.51.0):
23
+  - React/Core (0.55.4):
24
+    - yoga (= 0.55.4.React)
25
+  - React/CxxBridge (0.55.4):
40 26
     - Folly (= 2016.09.26.00)
41 27
     - React/Core
42 28
     - React/cxxreact
43
-  - React/cxxreact (0.51.0):
44
-    - boost
29
+  - React/cxxreact (0.55.4):
30
+    - boost-for-react-native (= 1.63.0)
45 31
     - Folly (= 2016.09.26.00)
46 32
     - React/jschelpers
47
-  - React/DevSupport (0.51.0):
33
+    - React/jsinspector
34
+  - React/DevSupport (0.55.4):
48 35
     - React/Core
49 36
     - React/RCTWebSocket
50
-  - React/fishhook (0.51.0)
51
-  - React/jschelpers (0.51.0):
37
+  - React/fishhook (0.55.4)
38
+  - React/jschelpers (0.55.4):
52 39
     - Folly (= 2016.09.26.00)
53 40
     - React/PrivateDatabase
54
-  - React/PrivateDatabase (0.51.0)
55
-  - React/RCTActionSheet (0.51.0):
41
+  - React/jsinspector (0.55.4)
42
+  - React/PrivateDatabase (0.55.4)
43
+  - React/RCTActionSheet (0.55.4):
56 44
     - React/Core
57
-  - React/RCTAnimation (0.51.0):
45
+  - React/RCTAnimation (0.55.4):
58 46
     - React/Core
59
-  - React/RCTBlob (0.51.0):
47
+  - React/RCTBlob (0.55.4):
60 48
     - React/Core
61
-  - React/RCTImage (0.51.0):
49
+  - React/RCTImage (0.55.4):
62 50
     - React/Core
63 51
     - React/RCTNetwork
64
-  - React/RCTLinkingIOS (0.51.0):
52
+  - React/RCTLinkingIOS (0.55.4):
65 53
     - React/Core
66
-  - React/RCTNetwork (0.51.0):
54
+  - React/RCTNetwork (0.55.4):
67 55
     - React/Core
68
-  - React/RCTText (0.51.0):
56
+  - React/RCTText (0.55.4):
69 57
     - React/Core
70
-  - React/RCTWebSocket (0.51.0):
58
+  - React/RCTWebSocket (0.55.4):
71 59
     - React/Core
72 60
     - React/fishhook
73 61
     - React/RCTBlob
@@ -78,12 +66,12 @@ PODS:
78 66
     - React/Core
79 67
   - RNVectorIcons (4.4.2):
80 68
     - React
81
-  - yoga (0.51.0.React)
69
+  - yoga (0.55.4.React)
82 70
 
83 71
 DEPENDENCIES:
84 72
   - DoubleConversion (from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec`)
85 73
   - Folly (from `../node_modules/react-native/third-party-podspecs/Folly.podspec`)
86
-  - GLog (from `../node_modules/react-native/third-party-podspecs/GLog.podspec`)
74
+  - glog (from `../node_modules/react-native/third-party-podspecs/glog.podspec`)
87 75
   - react-native-background-timer (from `../node_modules/react-native-background-timer`)
88 76
   - react-native-calendar-events (from `../node_modules/react-native-calendar-events`)
89 77
   - react-native-fetch-blob (from `../node_modules/react-native-fetch-blob`)
@@ -109,8 +97,8 @@ EXTERNAL SOURCES:
109 97
     :podspec: ../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec
110 98
   Folly:
111 99
     :podspec: ../node_modules/react-native/third-party-podspecs/Folly.podspec
112
-  GLog:
113
-    :podspec: ../node_modules/react-native/third-party-podspecs/GLog.podspec
100
+  glog:
101
+    :podspec: ../node_modules/react-native/third-party-podspecs/glog.podspec
114 102
   React:
115 103
     :path: ../node_modules/react-native
116 104
   react-native-background-timer:
@@ -133,11 +121,11 @@ EXTERNAL SOURCES:
133 121
     :path: ../node_modules/react-native/ReactCommon/yoga
134 122
 
135 123
 SPEC CHECKSUMS:
136
-  boost: 30a15ffb6d9aa4646dd3caffc960753f4cb4ca4e
137
-  DoubleConversion: ebb6747c5b66026ad4f97b789c3ceac6f18e57a6
138
-  Folly: b7255b29f1d693c375d642d0f04f0592181156d9
139
-  GLog: 3e4e4ae9746ce6bf6e9420c7fc1e08ad59c8ba1a
140
-  React: 541ba768b9855e10cdc76f55427a5cd0653ca806
124
+  boost-for-react-native: 39c7adb57c4e60d6c5479dd8623128eb5b3f0f2c
125
+  DoubleConversion: e22e0762848812a87afd67ffda3998d9ef29170c
126
+  Folly: 211775e49d8da0ca658aebc8eab89d642935755c
127
+  glog: 1de0bb937dccdc981596d3b5825ebfb765017ded
128
+  React: aa2040dbb6f317b95314968021bd2888816e03d5
141 129
   react-native-background-timer: 63dcbf37dbcf294b5c6c071afcdc661fa06a7594
142 130
   react-native-calendar-events: fe6fbc8ed337a7423c98f2c9012b25f20444de09
143 131
   react-native-fetch-blob: 63394b1d7b0781547b3e4463b3195790177b1222
@@ -146,8 +134,8 @@ SPEC CHECKSUMS:
146 134
   react-native-webrtc: 31b6d3f1e3e2ce373aa43fd682b04367250f807d
147 135
   RNSound: b360b3862d3118ed1c74bb9825696b5957686ac4
148 136
   RNVectorIcons: c0dbfbf6068fefa240c37b0f71bd03b45dddac44
149
-  yoga: 17521bbb0dd54a47c0b3ac43253e78cdac7488e0
137
+  yoga: a23273df0088bf7f2bb7e5d7b00044ea57a2a54a
150 138
 
151
-PODFILE CHECKSUM: fb462dc2d5d01656ec1f4ae39253903a702ba30c
139
+PODFILE CHECKSUM: fb12a5ae406b901e95aeb1ab5ebbb02773c46ede
152 140
 
153 141
 COCOAPODS: 1.4.0

+ 8681
- 5471
package-lock.json
File diff suppressed because it is too large
View File


+ 4
- 4
package.json View File

@@ -51,10 +51,10 @@
51 51
     "moment": "2.19.4",
52 52
     "postis": "2.2.0",
53 53
     "prop-types": "15.6.0",
54
-    "react": "16.2.0",
55
-    "react-dom": "16.2.0",
54
+    "react": "16.3.1",
55
+    "react-dom": "16.3.1",
56 56
     "react-i18next": "4.8.0",
57
-    "react-native": "0.51.0",
57
+    "react-native": "0.55.4",
58 58
     "react-native-background-timer": "2.0.0",
59 59
     "react-native-calendar-events": "github:jitsi/react-native-calendar-events#dabfabc4bacc1424a8b93ebdda6f3820dee198cb",
60 60
     "react-native-callstats": "3.27.0",
@@ -94,7 +94,7 @@
94 94
     "eslint-plugin-react-native": "3.2.0",
95 95
     "expose-loader": "0.7.4",
96 96
     "file-loader": "1.1.5",
97
-    "flow-bin": "0.57.3",
97
+    "flow-bin": "0.67.1",
98 98
     "imports-loader": "0.7.1",
99 99
     "node-sass": "4.8.3",
100 100
     "precommit-hook": "3.0.0",

Loading…
Cancel
Save