Skip to content

Commit

Permalink
chore: flow v0.71 (#6088)
Browse files Browse the repository at this point in the history
  • Loading branch information
thymikee authored and cpojer committed Apr 28, 2018
1 parent c608b09 commit c8be2dc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ include_warnings=true
emoji=true

[version]
^0.70.0
^0.71.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"eslint-plugin-prettier": "^2.3.1",
"eslint-plugin-react": "^7.1.0",
"eslint-plugin-relay": "~0.0.19",
"flow-bin": "^0.70.0",
"flow-bin": "^0.71.0",
"glob": "^7.1.1",
"graceful-fs": "^4.1.11",
"immutable": "^4.0.0-rc.7",
Expand Down
4 changes: 2 additions & 2 deletions packages/expect/src/matchers.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ const matchers: MatchersObject = {
}) +
'\n\n' +
`Expected constructor: ${EXPECTED_COLOR(
constructor.name || constructor,
constructor.name || String(constructor),
)}\n` +
`Received value: ${printReceived(received)}`
: () =>
Expand All @@ -181,7 +181,7 @@ const matchers: MatchersObject = {
}) +
'\n\n' +
`Expected constructor: ${EXPECTED_COLOR(
constructor.name || constructor,
constructor.name || String(constructor),
)}\n` +
`Received constructor: ${RECEIVED_COLOR(
received.constructor && received.constructor.name,
Expand Down
2 changes: 1 addition & 1 deletion packages/jest-resolve/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ Please check:
"moduleNameMapper": {
"${regex.toString()}": "${chalk.bold(mappedModuleName)}"
},
"resolver": ${chalk.bold(resolver)}`),
"resolver": ${chalk.bold(String(resolver))}`),
);
error.stack = '';
throw error;
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3685,9 +3685,9 @@ flat-cache@^1.2.1:
graceful-fs "^4.1.2"
write "^0.2.1"

flow-bin@^0.70.0:
version "0.70.0"
resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.70.0.tgz#080ae83a997f2b4ddb3dc2649bf13336825292b5"
flow-bin@^0.71.0:
version "0.71.0"
resolved "https://registry.yarnpkg.com/flow-bin/-/flow-bin-0.71.0.tgz#fd1b27a6458c3ebaa5cb811853182ed631918b70"

flow-remove-types@^1.1.0:
version "1.2.3"
Expand Down

0 comments on commit c8be2dc

Please sign in to comment.