Skip to content

Commit 1866e58

Browse files
authored
Merge pull request #132 from ImmoweltGroup/renovate/flow-bin-0.x
TASK: update dependency flow-bin to v0.69.0
2 parents 714e11c + d252c7e commit 1866e58

File tree

13 files changed

+27
-23
lines changed

13 files changed

+27
-23
lines changed

packages/create-react-microservice-scaffold/src/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
"@immowelt/styleguide-javascript": "1.0.11",
8888
"create-any-cli": "1.3.1",
8989
"editorconfig-checker": "1.2.0",
90-
"flow-bin": "0.65.0",
90+
"flow-bin": "0.69.0",
9191
"flow-mono-cli": "1.3.1",
9292
"flow-typed": "2.4.0",
9393
"lint-staged": "6.1.1",

packages/create-react-microservice-scaffold/src/packages/my-fancy-ui-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"enzyme-adapter-react-16": "1.1.1",
3131
"enzyme-to-json": "3.3.3",
3232
"eslint": "4.19.1",
33-
"flow-bin": "0.65.0",
33+
"flow-bin": "0.69.0",
3434
"flow-typed": "2.4.0",
3535
"jest": "22.0.4",
3636
"prop-types": "15.6.1",

packages/create-react-microservice-scaffold/src/packages/my-fancy-ui-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@immowelt/jest-preset-node": "1.0.1",
5151
"case-sensitive-paths-webpack-plugin": "2.1.2",
5252
"eslint": "4.19.1",
53-
"flow-bin": "0.65.0",
53+
"flow-bin": "0.69.0",
5454
"flow-typed": "2.4.0",
5555
"jest": "22.0.4",
5656
"nodemon": "1.17.3",

packages/create-react-microservice-scaffold/src/packages/my-fancy-ui-hypernova/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"@immowelt/jest-preset-node": "1.0.1",
4242
"create-config": "1.0.4",
4343
"eslint": "4.19.1",
44-
"flow-bin": "0.65.0",
44+
"flow-bin": "0.69.0",
4545
"flow-typed": "2.4.0",
4646
"invalidate-module": "1.0.0",
4747
"jest": "22.0.4",

packages/create-react-microservice-scaffold/src/packages/my-fancy-ui-i18n/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@immowelt/eslint-config-immowelt-react": "2.0.4",
2828
"@immowelt/jest-preset-node": "1.0.1",
2929
"eslint": "4.19.1",
30-
"flow-bin": "0.65.0",
30+
"flow-bin": "0.69.0",
3131
"flow-typed": "2.4.0",
3232
"jest": "22.0.4"
3333
},

packages/create-react-microservice-scaffold/src/packages/my-fancy-ui-logger/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@immowelt/eslint-config-immowelt-react": "2.0.4",
2828
"@immowelt/jest-preset-node": "1.0.1",
2929
"eslint": "4.19.1",
30-
"flow-bin": "0.65.0",
30+
"flow-bin": "0.69.0",
3131
"flow-typed": "2.4.0",
3232
"jest": "22.0.4"
3333
},

packages/create-react-microservice-scaffold/src/packages/my-fancy-ui-server/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"@immowelt/jest-preset-node": "1.0.1",
5151
"create-config": "1.0.4",
5252
"eslint": "4.19.1",
53-
"flow-bin": "0.65.0",
53+
"flow-bin": "0.69.0",
5454
"flow-typed": "2.4.0",
5555
"jest": "22.0.4",
5656
"mock-fs": "4.4.2",

packages/create-react-microservice-scaffold/src/packages/my-fancy-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"enzyme-adapter-react-16": "1.1.1",
5656
"enzyme-to-json": "3.3.3",
5757
"eslint": "4.19.1",
58-
"flow-bin": "0.65.0",
58+
"flow-bin": "0.69.0",
5959
"flow-typed": "2.4.0",
6060
"jest": "22.0.4",
6161
"jest-react-redux": "1.0.3",

packages/create-react-microservice-scaffold/src/packages/my-fancy-ui/src/store/modules/comments/__snapshots__/index.spec.js.snap

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@
33
exports[`reducer() reducer()[actionTypes.SET_COMMENTS] should transform and set the api response into the "byId" state structure 1`] = `
44
Object {
55
"commentsById": Object {
6-
"bar": Object {
7-
"id": "bar",
8-
"name": "Bar",
9-
},
10-
"foo": Object {
11-
"id": "foo",
6+
"1": Object {
7+
"body": "fooBody",
8+
"email": "fooEmail",
9+
"id": 1,
1210
"name": "Foo",
1311
},
12+
"2": Object {
13+
"body": "barBody",
14+
"email": "barEmail",
15+
"id": 2,
16+
"name": "Bar",
17+
},
1418
},
1519
}
1620
`;

packages/create-react-microservice-scaffold/src/packages/my-fancy-ui/src/store/modules/comments/index.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ describe('reducer()', () => {
4444
};
4545
// $FlowFixMe: suppressing this error since it is a test case
4646
const action = actions.setComments([
47-
{id: 'foo', name: 'Foo'},
48-
{id: 'bar', name: 'Bar'}
47+
{id: 1, name: 'Foo', body: 'fooBody', email: 'fooEmail'},
48+
{id: 2, name: 'Bar', body: 'barBody', email: 'barEmail'}
4949
]);
5050
const result = reducer(initialState, action);
5151

0 commit comments

Comments
 (0)