Deploy v0.26.0
Reviewed By: bhosmer, samwgoldman Differential Revision: D3361342 fbshipit-source-id: c062656e3789784929102ba04c54be3be774d7dc
This commit is contained in:
parent
5e8f1716fc
commit
d81cf658ef
|
@ -88,9 +88,9 @@ suppress_type=$FlowIssue
|
|||
suppress_type=$FlowFixMe
|
||||
suppress_type=$FixMe
|
||||
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(2[0-5]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(2[0-5]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(2[0-6]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(2[0-6]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
|
||||
|
||||
[version]
|
||||
^0.25.0
|
||||
^0.26.0
|
||||
|
|
|
@ -1,5 +1,10 @@
|
|||
/**
|
||||
* Copyright (c) 2015, Facebook, Inc. All rights reserved.
|
||||
* Copyright (c) 2013-present, Facebook, Inc.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This source code is licensed under the BSD-style license found in the
|
||||
* LICENSE file in the root directory of this source tree. An additional grant
|
||||
* of patent rights can be found in the PATENTS file in the same directory.
|
||||
*
|
||||
* Facebook, Inc. ("Facebook") owns all right, title and interest, including
|
||||
* all intellectual property and other proprietary rights, in and to the React
|
||||
|
@ -39,11 +44,12 @@ const {
|
|||
|
||||
type Props = {
|
||||
children: ReactElement<any>;
|
||||
style: any;
|
||||
textStyle: any;
|
||||
viewProps: any;
|
||||
style?: any;
|
||||
textStyle?: any;
|
||||
viewProps?: any;
|
||||
}
|
||||
|
||||
// $FlowIssue(>=0.26.0) #11432532
|
||||
const NavigationHeaderTitle = ({ children, style, textStyle, viewProps }: Props) => (
|
||||
<View style={[ styles.title, style ]} {...viewProps}>
|
||||
<Text style={[ styles.titleText, textStyle ]}>{children}</Text>
|
||||
|
|
|
@ -134,6 +134,8 @@ const WarningInspector = ({
|
|||
const View = require('View');
|
||||
|
||||
const countSentence =
|
||||
/* $FlowFixMe(>=0.26.0) - count can be undefined! Look at WarningInspector
|
||||
* usage! */
|
||||
'Warning encountered ' + count + ' time' + (count - 1 ? 's' : '') + '.';
|
||||
|
||||
return (
|
||||
|
|
|
@ -188,7 +188,7 @@
|
|||
"eslint": "^2.5.3",
|
||||
"eslint-plugin-flow-vars": "^0.2.1",
|
||||
"eslint-plugin-react": "^4.2.1",
|
||||
"flow-bin": "^0.25.0",
|
||||
"flow-bin": "^0.26.0",
|
||||
"jest": "12.1.1",
|
||||
"portfinder": "0.4.0",
|
||||
"react": "15.1.0",
|
||||
|
|
Loading…
Reference in New Issue