Skip to content

Commit 05f4247

Browse files
committed
build: update dependencies
1 parent 6d6d8f8 commit 05f4247

File tree

4 files changed

+1243
-924
lines changed

4 files changed

+1243
-924
lines changed

.vscode/settings.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
{
2-
"prettier.eslintIntegration": true,
3-
"eslint.validate": [
4-
"javascript",
5-
],
2+
"eslint.validate": ["javascript"],
63
"javascript.validate.enable": false,
74
"javascript.autoClosingTags": false,
5+
"eslint.autoFixOnSave": true
86
}

package.json

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -26,34 +26,34 @@
2626
"graphql-compose": "^7.0.4"
2727
},
2828
"devDependencies": {
29-
"@babel/cli": "^7.4.4",
30-
"@babel/core": "^7.4.5",
31-
"@babel/node": "^7.4.5",
32-
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
33-
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
34-
"@babel/plugin-transform-runtime": "^7.4.4",
35-
"@babel/preset-env": "^7.4.5",
29+
"@babel/cli": "^7.6.4",
30+
"@babel/core": "^7.6.4",
31+
"@babel/node": "^7.6.3",
32+
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
33+
"@babel/plugin-transform-flow-strip-types": "^7.6.3",
34+
"@babel/plugin-transform-runtime": "^7.6.2",
35+
"@babel/preset-env": "^7.6.3",
3636
"@babel/preset-flow": "^7.0.0",
3737
"babel-core": "^7.0.0-bridge.0",
38-
"babel-eslint": "^10.0.1",
39-
"babel-jest": "^24.8.0",
40-
"cross-env": "^5.2.0",
41-
"eslint": "^5.16.0",
42-
"eslint-config-airbnb-base": "^13.1.0",
43-
"eslint-config-prettier": "^4.3.0",
44-
"eslint-plugin-flowtype": "^3.9.1",
45-
"eslint-plugin-import": "^2.17.3",
46-
"eslint-plugin-prettier": "^3.1.0",
38+
"babel-eslint": "^10.0.3",
39+
"babel-jest": "^24.9.0",
40+
"cross-env": "^6.0.3",
41+
"eslint": "^6.6.0",
42+
"eslint-config-airbnb-base": "^14.0.0",
43+
"eslint-config-prettier": "^6.5.0",
44+
"eslint-plugin-flowtype": "^4.3.0",
45+
"eslint-plugin-import": "^2.18.2",
46+
"eslint-plugin-prettier": "^3.1.1",
4747
"express": "^4.17.1",
48-
"express-graphql": "^0.8.0",
49-
"flow-bin": "^0.100.0",
50-
"graphql": "14.3.1",
51-
"graphql-compose": "^7.0.4",
52-
"jest": "^24.8.0",
48+
"express-graphql": "^0.9.0",
49+
"flow-bin": "^0.110.0",
50+
"graphql": "14.5.8",
51+
"graphql-compose": "^7.4.2",
52+
"jest": "^24.9.0",
5353
"node-fetch": "^2.6.0",
54-
"prettier": "^1.17.1",
55-
"rimraf": "^2.6.3",
56-
"semantic-release": "^15.13.12"
54+
"prettier": "^1.18.2",
55+
"rimraf": "^3.0.0",
56+
"semantic-release": "^15.13.28"
5757
},
5858
"scripts": {
5959
"build": "npm run build-cjs && npm run build-mjs",

src/__fixtures__/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ const app = express();
99

1010
app.use(
1111
'/graphql',
12-
graphqlHTTP(req => ({
12+
(graphqlHTTP(req => ({
1313
schema,
1414
graphiql: true,
1515
context: req,
16-
}))
16+
})): any)
1717
);
1818

1919
app.listen(PORT, () => {

0 commit comments

Comments
 (0)