Skip to content

Commit

Permalink
Update flow-bin to the latest version 馃殌 (#3556)
Browse files Browse the repository at this point in the history
* chore(package): update flow-bin to version 0.79.0

* Update flow decls
  • Loading branch information
greenkeeper[bot] authored and jeddy3 committed Aug 17, 2018
1 parent 2301a48 commit 4047b91
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions flow-typed/npm/lodash_v4.x.x.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// flow-typed signature: 2861302b58cfb9b80b8a73ad0b93f56d
// flow-typed version: b72af61d9e/lodash_v4.x.x/flow_>=v0.63.x
// flow-typed signature: b5d718f00f6b115d706f046e5c36b6ea
// flow-typed version: 5240bd2a9a/lodash_v4.x.x/flow_>=v0.63.x

declare module "lodash" {
declare type __CurriedFunction1<A, R, AA: A> = (...r: [AA]) => R;
Expand Down Expand Up @@ -1208,7 +1208,7 @@ declare module "lodash" {
): Object;
omit(object?: ?Object, ...props: Array<string>): Object;
omit(object?: ?Object, props: Array<string>): Object;
omitBy<A, T: { [id: string | number]: A }>(
omitBy<A, T: { [id: string]: A }|{ [id: number]: A }>(
object: T,
predicate?: ?OPredicate<A, T>
): Object;
Expand All @@ -1218,7 +1218,7 @@ declare module "lodash" {
): {};
pick(object?: ?Object, ...props: Array<string>): Object;
pick(object?: ?Object, props: Array<string>): Object;
pickBy<A, T: { [id: string | number]: A }>(
pickBy<A, T: { [id: string]: A }|{ [id: number]: A }>(
object: T,
predicate?: ?OPredicate<A, T>
): Object;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"eslint": "~5.1.0",
"eslint-config-stylelint": "~8.1.0",
"file-exists-promise": "^1.0.2",
"flow-bin": "^0.78.0",
"flow-bin": "^0.79.0",
"flow-typed": "^2.5.1",
"husky": "^0.14.3",
"jest": "^23.4.1",
Expand Down

0 comments on commit 4047b91

Please sign in to comment.