Skip to content

Commit 904e698

Browse files
committed
chore(package): Update graphql to 0.9.0 and other packages
1 parent 61b94d8 commit 904e698

File tree

5 files changed

+672
-860
lines changed

5 files changed

+672
-860
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
"plugins": [
55
"flowtype"

.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

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,8 @@ node_js:
1212
- "5"
1313
- "4"
1414
script:
15-
- yarn add graphql -g
16-
- yarn add graphql-compose -g
17-
- yarn run coverage
18-
- yarn run build
15+
- yarn run coverage
16+
- yarn run build
1917
after_success:
2018
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all'
2119
- python travis_after_all.py

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"keywords": [
1717
"graphql",
1818
"compose",
19+
"graphql-compose",
1920
"relay"
2021
],
2122
"license": "MIT",
@@ -24,40 +25,39 @@
2425
},
2526
"homepage": "https://github.com/nodkz/graphql-compose-connection",
2627
"peerDependencies": {
27-
"graphql": ">=0.7.1 || >=0.8.0",
28+
"graphql": ">=0.7.1 || >=0.8.0 || >=0.9.0",
2829
"graphql-compose": ">=1.4.0"
2930
},
3031
"devDependencies": {
31-
"babel-cli": "^6.18.0",
32-
"babel-core": "^6.21.0",
32+
"babel-cli": "^6.22.2",
33+
"babel-core": "^6.22.1",
3334
"babel-eslint": "^7.1.1",
3435
"babel-plugin-syntax-async-functions": "6.13.0",
35-
"babel-plugin-transform-class-properties": "^6.19.0",
36-
"babel-plugin-transform-flow-strip-types": "^6.21.0",
37-
"babel-plugin-transform-object-rest-spread": "^6.20.2",
38-
"babel-plugin-transform-regenerator": "^6.21.0",
39-
"babel-plugin-transform-runtime": "6.15.0",
40-
"babel-preset-es2015": "^6.18.0",
36+
"babel-plugin-transform-class-properties": "^6.22.0",
37+
"babel-plugin-transform-flow-strip-types": "^6.22.0",
38+
"babel-plugin-transform-object-rest-spread": "^6.22.0",
39+
"babel-plugin-transform-regenerator": "^6.22.0",
40+
"babel-plugin-transform-runtime": "^6.22.0",
41+
"babel-preset-es2015": "^6.22.0",
4142
"chai": "3.5.0",
4243
"chai-as-promised": "6.0.0",
4344
"chai-spies": "0.7.1",
4445
"cz-conventional-changelog": "1.2.0",
45-
"eslint": "^3.12.2",
46-
"eslint-config-airbnb": "11.0.0",
47-
"eslint-plugin-flowtype": "^2.29.1",
46+
"eslint": "^3.14.0",
47+
"eslint-config-airbnb-base": "^11.0.1",
48+
"eslint-plugin-flowtype": "^2.30.0",
4849
"eslint-plugin-import": "^2.2.0",
49-
"eslint-plugin-jsx-a11y": "2.2.3",
50-
"eslint-plugin-react": "6.4.1",
51-
"flow-bin": "^0.37.0",
52-
"ghooks": "1.3.2",
50+
"flow-bin": "^0.38.0",
51+
"graphql": "^0.9.0",
52+
"graphql-compose": "^1.10.0",
5353
"mocha": "^3.2.0",
54-
"nyc": "^10.0.0",
54+
"nyc": "^10.1.2",
5555
"rimraf": "2.5.4",
56-
"sane": "1.4.1",
56+
"sane": "^1.5.0",
5757
"semantic-release": "^6.3.2"
5858
},
5959
"dependencies": {
60-
"babel-runtime": "^6.20.0"
60+
"babel-runtime": "^6.22.0"
6161
},
6262
"config": {
6363
"commitizen": {
@@ -85,8 +85,8 @@
8585
"lint": "eslint src test *.js",
8686
"test": "babel-node ./node_modules/.bin/_mocha --compilers js:babel-core/register --reporter dot --require ./resources/mocha-bootload src/**/__tests__/**/*-test.js",
8787
"watch": "babel-node ./resources/watch.js",
88-
"link": "npm link graphql && npm link graphql-compose && npm link",
89-
"unlink": "npm unlink graphql && npm unlink graphql-compose && npm install graphql graphql-compose",
88+
"link": "yarn link graphql && yarn link graphql-compose && yarn link",
89+
"unlink": "yarn unlink graphql && yarn unlink graphql-compose && yarn add graphql graphql-compose",
9090
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
9191
}
9292
}

0 commit comments

Comments
 (0)