Skip to content

Commit de34ff8

Browse files
Update deps (#1444)
1 parent 055e689 commit de34ff8

File tree

4 files changed

+446
-604
lines changed

4 files changed

+446
-604
lines changed

.flowconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)?)\\)
1313
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(<VERSION>\\)?)\\)?:? #[0-9]+
1414

1515
[version]
16-
^0.76.0
16+
^0.77.0

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -48,34 +48,34 @@
4848
"iterall": "^1.2.2"
4949
},
5050
"devDependencies": {
51-
"@babel/cli": "7.0.0-beta.53",
52-
"@babel/core": "7.0.0-beta.53",
53-
"@babel/node": "7.0.0-beta.53",
54-
"@babel/plugin-proposal-class-properties": "7.0.0-beta.53",
55-
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.53",
56-
"@babel/plugin-syntax-async-generators": "7.0.0-beta.53",
57-
"@babel/plugin-transform-classes": "7.0.0-beta.53",
58-
"@babel/plugin-transform-destructuring": "7.0.0-beta.53",
59-
"@babel/plugin-transform-flow-strip-types": "7.0.0-beta.53",
60-
"@babel/plugin-transform-modules-commonjs": "7.0.0-beta.53",
61-
"@babel/plugin-transform-spread": "7.0.0-beta.53",
62-
"@babel/polyfill": "7.0.0-beta.53",
63-
"@babel/preset-env": "7.0.0-beta.53",
64-
"@babel/register": "7.0.0-beta.53",
51+
"@babel/cli": "7.0.0-beta.55",
52+
"@babel/core": "7.0.0-beta.55",
53+
"@babel/node": "7.0.0-beta.55",
54+
"@babel/plugin-proposal-class-properties": "7.0.0-beta.55",
55+
"@babel/plugin-proposal-object-rest-spread": "7.0.0-beta.55",
56+
"@babel/plugin-syntax-async-generators": "7.0.0-beta.55",
57+
"@babel/plugin-transform-classes": "7.0.0-beta.55",
58+
"@babel/plugin-transform-destructuring": "7.0.0-beta.55",
59+
"@babel/plugin-transform-flow-strip-types": "7.0.0-beta.55",
60+
"@babel/plugin-transform-modules-commonjs": "7.0.0-beta.55",
61+
"@babel/plugin-transform-spread": "7.0.0-beta.55",
62+
"@babel/polyfill": "7.0.0-beta.55",
63+
"@babel/preset-env": "7.0.0-beta.55",
64+
"@babel/register": "7.0.0-beta.55",
6565
"babel-eslint": "8.2.6",
6666
"babel-plugin-syntax-async-functions": "6.13.0",
6767
"beautify-benchmark": "0.2.4",
6868
"benchmark": "2.1.4",
6969
"chai": "4.1.2",
7070
"coveralls": "3.0.2",
71-
"eslint": "5.1.0",
71+
"eslint": "5.2.0",
7272
"eslint-plugin-babel": "5.1.0",
7373
"eslint-plugin-flowtype": "2.50.0",
7474
"eslint-plugin-prettier": "2.6.2",
75-
"flow-bin": "0.76.0",
75+
"flow-bin": "0.77.0",
7676
"mocha": "5.2.0",
7777
"nyc": "12.0.2",
78-
"prettier": "1.13.7",
79-
"sane": "2.5.2"
78+
"prettier": "1.14.0",
79+
"sane": "3.0.0"
8080
}
8181
}

src/subscription/__tests__/subscribe-test.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -882,10 +882,13 @@ describe('Subscription Publish Phase', () => {
882882
});
883883

884884
it('should pass through error thrown in source event stream', async () => {
885-
const erroringEmailSchema = emailSchemaWithResolvers(async function*() {
886-
yield { email: { subject: 'Hello' } };
887-
throw new Error('test error');
888-
}, email => email);
885+
const erroringEmailSchema = emailSchemaWithResolvers(
886+
async function*() {
887+
yield { email: { subject: 'Hello' } };
888+
throw new Error('test error');
889+
},
890+
email => email,
891+
);
889892

890893
const subscription = await subscribe(
891894
erroringEmailSchema,

0 commit comments

Comments
 (0)