Skip to content

Commit df20242

Browse files
committed
chore(package): Update graphql to 0.9.0 and other packages
1 parent 52ba44d commit df20242

File tree

4 files changed

+431
-484
lines changed

4 files changed

+431
-484
lines changed

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "airbnb",
2+
"extends": "airbnb-base",
33
"parser": "babel-eslint",
44
"rules": {
55
"no-underscore-dangle": 0,

.flowconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ esproposal.class_instance_fields=enable
1515
suppress_comment= \\(.\\|\n\\)*\\$FlowFixMe
1616

1717
[version]
18-
0.37.0
18+
0.38.0

package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"keywords": [
1616
"graphql",
1717
"compose",
18+
"graphql-compose",
1819
"mongoose",
1920
"mongodb"
2021
],
@@ -24,45 +25,43 @@
2425
},
2526
"homepage": "https://github.com/nodkz/graphql-compose-mongoose",
2627
"dependencies": {
27-
"babel-runtime": "^6.20.0",
28+
"babel-runtime": "^6.22.0",
2829
"object-path": "^0.11.3"
2930
},
3031
"peerDependencies": {
31-
"graphql": ">=0.7.1 || >=0.8.0",
32+
"graphql": ">=0.7.1 || >=0.8.0 || >=0.9.0",
3233
"graphql-compose": ">=1.4.0",
3334
"graphql-compose-connection": ">=2.0.2",
3435
"mongoose": ">=4.0.0"
3536
},
3637
"devDependencies": {
37-
"babel-cli": "^6.18.0",
38-
"babel-core": "^6.21.0",
38+
"babel-cli": "^6.22.2",
39+
"babel-core": "^6.22.1",
3940
"babel-eslint": "^7.1.1",
4041
"babel-plugin-syntax-async-functions": "6.13.0",
41-
"babel-plugin-transform-class-properties": "^6.19.0",
42-
"babel-plugin-transform-flow-strip-types": "^6.21.0",
43-
"babel-plugin-transform-object-rest-spread": "^6.20.2",
44-
"babel-plugin-transform-regenerator": "^6.21.0",
45-
"babel-plugin-transform-runtime": "6.15.0",
46-
"babel-preset-es2015": "^6.18.0",
42+
"babel-plugin-transform-class-properties": "^6.22.0",
43+
"babel-plugin-transform-flow-strip-types": "^6.22.0",
44+
"babel-plugin-transform-object-rest-spread": "^6.22.0",
45+
"babel-plugin-transform-regenerator": "^6.22.0",
46+
"babel-plugin-transform-runtime": "^6.22.0",
47+
"babel-preset-es2015": "^6.22.0",
4748
"chai": "3.5.0",
4849
"chai-as-promised": "6.0.0",
4950
"chai-spies": "0.7.1",
5051
"cz-conventional-changelog": "1.2.0",
51-
"eslint": "^3.12.2",
52-
"eslint-config-airbnb": "12.0.0",
53-
"eslint-plugin-flowtype": "^2.29.1",
52+
"eslint": "^3.14.0",
53+
"eslint-config-airbnb-base": "^11.0.1",
54+
"eslint-plugin-flowtype": "^2.30.0",
5455
"eslint-plugin-import": "^2.2.0",
55-
"eslint-plugin-jsx-a11y": "2.2.2",
56-
"eslint-plugin-react": "6.3.0",
57-
"flow-bin": "^0.37.0",
58-
"graphql": "^0.8.2",
59-
"graphql-compose": "^1.8.0",
56+
"flow-bin": "^0.38.0",
57+
"graphql": "^0.9.0",
58+
"graphql-compose": "^1.10.0",
6059
"graphql-compose-connection": "^2.1.2",
6160
"mocha": "^3.2.0",
62-
"mongoose": "^4.7.5",
63-
"nyc": "^10.0.0",
61+
"mongoose": "^4.7.8",
62+
"nyc": "^10.1.2",
6463
"rimraf": "2.5.4",
65-
"sane": "1.4.1",
64+
"sane": "^1.5.0",
6665
"semantic-release": "^6.3.2"
6766
},
6867
"config": {
@@ -91,7 +90,8 @@
9190
"lint": "eslint src test *.js",
9291
"test": "babel-node ./node_modules/.bin/_mocha --compilers js:babel-core/register --reporter dot --timeout 20000 --require ./resources/mocha-bootload src/**/__tests__/**/*-test.js",
9392
"watch": "babel-node ./resources/watch.js",
94-
"link": "npm link graphql && npm link graphql-compose && npm link graphql-compose-connection && npm link mongoose && npm link",
93+
"link": "yarn link graphql && yarn link graphql-compose && yarn link graphql-compose-connection && yarn link mongoose && yarn link",
94+
"unlink": "yarn unlink graphql && yarn unlink graphql-compose && yarn unlink graphql-compose-connection && yarn unlink mongoose && yarn add graphql graphql-compose graphql-compose-connection mongoose",
9595
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
9696
}
9797
}

0 commit comments

Comments
 (0)