Skip to content

Instantly share code, notes, and snippets.

View Ashoat's full-sized avatar
🔐

Ashoat Tevosyan Ashoat

🔐
View GitHub Profile
Scanning folders for symlinks in /Users/ashoat/Dropbox/src/react-native-tag-input/Example/node_modules (11ms)
JS server already running.
Building and installing the app on the device (cd android && ./gradlew installDebug)...
Incremental java compilation is an incubating feature.
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportAppcompatV72301Library
:app:prepareComAndroidSupportRecyclerviewV72301Library
@Ashoat
Ashoat / gist:1969bf63b407696d835ef397ebb4acd7
Created October 16, 2017 04:27
flow-typed lint-staged precommit bug
ashoat@Ashoats-MacBook-Pro [~/Dropbox/src/flow-typed/definitions]# npm run precommit
> [email protected] precommit /Users/ashoat/Dropbox/src/flow-typed/definitions
> lint-staged
● Validation Warning:
Unknown option "package.json" with value ["prettier-package-json --write", "prettier --write", "git add"] was found.
This is probably a typing mistake. Fixing it will remove this message.
Please refer to https://github.com/okonet/lint-staged#configuration for more information...
diff --git a/.flowconfig b/.flowconfig
index 61567d6..a868d81 100644
--- a/.flowconfig
+++ b/.flowconfig
@@ -9,7 +9,9 @@
; For RN Apps installed via npm, "Libraries" folder is inside
; "node_modules/react-native" but in the source repo it is in the root
.*/Libraries/react-native/React.js
-.*/Libraries/react-native/ReactNative.js
+
diff --git a/.flowconfig b/.flowconfig
index 61567d6..a868d81 100644
--- a/.flowconfig
+++ b/.flowconfig
@@ -9,7 +9,9 @@
; For RN Apps installed via npm, "Libraries" folder is inside
; "node_modules/react-native" but in the source repo it is in the root
.*/Libraries/react-native/React.js
-.*/Libraries/react-native/ReactNative.js
+
Error: src/navigators/DrawerNavigator.js:94
94: )((props: *) => <DrawerScreen {...props} />),
^^^^^^^^^^^^^^^^^^^^^^^^^^^ React element `DrawerScreen`
21: NavigationTabAction,
^^^^^^^^^^^^^^^^^^^ exact type: object type. This type is incompatible with. See: src/views/Drawer/DrawerScreen.js:21
37: InjectedProps<S, NavigationInitAction | A, O> & NavigationNavigatorProps<O, S>
^^^^^^^^^^^^^^^^^^^^^^^^ union: NavigationInitAction | A. See: src/navigators/createNavigator.js:37
Member 1:
37: InjectedProps<S, NavigationInitAction | A, O> & NavigationNavigatorProps<O, S>
^^^^^^^^^^^^^^^^^^^^ NavigationInitAction. See: src/navigators/createNavigator.js:37
Error: src/views/TabView/TabView.js:211
211: return <TabViewAnimated {...props} />;
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ React element `TabViewAnimated`
148: routes: Array<NavigationRoute>,
^^^^^^^^^^^^^^^ intersection. This type is incompatible with. See: src/TypeDefinition.js:148
56: export default class TabViewAnimated<T: Route<*>> extends React.Component<
^^^^^^^^ empty. See: node_modules/react-native-tab-view/src/TabViewAnimated.js:56
Member 1:
175: export type NavigationStateRoute = NavigationLeafRoute & NavigationState;
^^^^^^^^^^^^^^^^^^^ NavigationLeafRoute. See: src/TypeDefinition.js:175

Contributing to the React Navigation Flow libdef

Please do not make changes directly to the libdef file in flow-typed without first submitting a PR to the libdef within the react-navigation repo. After your PR has been accepted in react-navigation, you can go ahead and submit a PR on flow-typed.

We admittedly have a slightly unusual system for maintaing our Flow types. We used to host Flow types directly in-package, but that prevented us from simultaneously supporting multiple React Native versions. To enable that support, we've moved our libdef to flow-typed, but we still want to (1) have our CI typecheck the libdef against our example projects, and (2) re view any changes to the libdef.

I/dalvikvm(23772): threadid=1: stack overflow on call to Landroid/text/SpanSet;.init:VLII
I/dalvikvm(23772): method requires 52+20+16=88 bytes, fp is 0x41a7f344 (68 left)
I/dalvikvm(23772): expanding stack end (0x41a7f300 to 0x41a7f000)
I/dalvikvm(23772): Shrank stack (to 0x41a7f300, curFrame is 0x41a7f7ec)
diff --git a/definitions/npm/express_v4.x.x/flow_v0.104.x-/express_v4.x.x.js b/definitions/npm/express_v4.x.x/flow_v0.104.x-/express_v4.x.x.js
index 84393084..7e29c7e3 100644
--- a/definitions/npm/express_v4.x.x/flow_v0.104.x-/express_v4.x.x.js
+++ b/definitions/npm/express_v4.x.x/flow_v0.104.x-/express_v4.x.x.js
@@ -98,13 +98,97 @@ declare class express$Response extends http$ServerResponse mixins express$Reques
}
declare type express$NextFunction = (err?: ?Error | 'route') => mixed;
-declare type express$Middleware =
- ((req: express$Request, res: express$Response, next: express$NextFunction) => mixed) |