Skip to content

Commit 5d2d52f

Browse files
committed
chore(package): update dependencies
1 parent 9ed1b6c commit 5d2d52f

File tree

4 files changed

+368
-291
lines changed

4 files changed

+368
-291
lines changed

package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -37,28 +37,28 @@
3737
"devDependencies": {
3838
"babel-cli": "^6.26.0",
3939
"babel-eslint": "^7.2.3",
40-
"babel-jest": "^21.0.0",
40+
"babel-jest": "^21.2.0",
4141
"babel-plugin-transform-flow-strip-types": "^6.22.0",
42-
"babel-plugin-transform-object-rest-spread": "^6.26.0",
42+
"babel-plugin-transform-object-rest-spread": "^6.13.0",
4343
"babel-plugin-transform-runtime": "^6.23.0",
4444
"babel-preset-env": "^1.5.2",
4545
"cz-conventional-changelog": "^2.0.0",
46-
"eslint": "^4.6.1",
47-
"eslint-config-airbnb-base": "^12.0.0",
48-
"eslint-config-prettier": "^2.4.0",
49-
"eslint-plugin-flowtype": "^2.35.1",
46+
"eslint": "^4.8.0",
47+
"eslint-config-airbnb-base": "^12.0.1",
48+
"eslint-config-prettier": "^2.6.0",
49+
"eslint-plugin-flowtype": "^2.37.0",
5050
"eslint-plugin-import": "^2.3.0",
51-
"eslint-plugin-prettier": "^2.2.0",
51+
"eslint-plugin-prettier": "^2.3.1",
5252
"flow-bin": "^0.54.1",
5353
"graphql": "^0.11.3",
5454
"graphql-compose": "^2.9.0",
55-
"graphql-compose-connection": ">=2.3.0",
55+
"graphql-compose-connection": ">=2.5.0",
5656
"graphql-compose-pagination": ">=1.1.0",
57-
"jest": "^21.0.1",
57+
"jest": "^21.2.1",
5858
"mongodb-memory-server": "^1.5.0",
5959
"mongoose": "^4.11.10",
6060
"prettier": "^1.6.1",
61-
"rimraf": "^2.6.1",
61+
"rimraf": "^2.6.2",
6262
"semantic-release": "^7.0.2"
6363
},
6464
"config": {

src/resolvers/removeMany.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ export default function removeMany(
7272
// this option is excessive
7373
(resolveParams.beforeQuery
7474
? Promise.resolve(resolveParams.beforeQuery(resolveParams.query, resolveParams))
75-
: resolveParams.query.exec()).then(res => {
75+
: resolveParams.query.exec()
76+
).then(res => {
7677
if (res.result && res.result.ok) {
7778
return {
7879
numAffected: res.result.n,

src/resolvers/updateMany.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,8 @@ export default function updateMany(
9999
// this option is excessive
100100
return (resolveParams.beforeQuery
101101
? Promise.resolve(resolveParams.beforeQuery(resolveParams.query, resolveParams))
102-
: resolveParams.query.exec()).then(res => {
102+
: resolveParams.query.exec()
103+
).then(res => {
103104
if (res.ok) {
104105
return {
105106
numAffected: res.nModified,

0 commit comments

Comments
 (0)