Skip to content

Commit ec50c99

Browse files
committed
chore(package): Update graphql to 0.9.0 and other packages
1 parent 276027f commit ec50c99

File tree

5 files changed

+422
-572
lines changed

5 files changed

+422
-572
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

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ node_js:
1212
- "5"
1313
- "4"
1414
script:
15-
- yarn add -g graphql graphql-compose
1615
- yarn run coverage
1716
- yarn run build
1817
after_success:

package.json

Lines changed: 21 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"keywords": [
1616
"graphql",
1717
"compose",
18+
"graphql-compose",
1819
"relay"
1920
],
2021
"license": "MIT",
@@ -23,39 +24,39 @@
2324
},
2425
"homepage": "https://github.com/nodkz/graphql-compose-relay",
2526
"peerDependencies": {
26-
"graphql": ">=0.7.1 || >=0.8.0",
27+
"graphql": ">=0.7.1 || >=0.8.0 || >=0.9.0",
2728
"graphql-compose": ">=1.4.0"
2829
},
2930
"devDependencies": {
30-
"babel-cli": "^6.18.0",
31-
"babel-core": "^6.21.0",
31+
"babel-cli": "^6.22.2",
32+
"babel-core": "^6.22.1",
3233
"babel-eslint": "^7.1.1",
3334
"babel-plugin-syntax-async-functions": "6.13.0",
34-
"babel-plugin-transform-class-properties": "^6.19.0",
35-
"babel-plugin-transform-flow-strip-types": "^6.21.0",
36-
"babel-plugin-transform-object-rest-spread": "^6.20.2",
37-
"babel-plugin-transform-regenerator": "^6.21.0",
38-
"babel-plugin-transform-runtime": "6.15.0",
39-
"babel-preset-es2015": "^6.18.0",
35+
"babel-plugin-transform-class-properties": "^6.22.0",
36+
"babel-plugin-transform-flow-strip-types": "^6.22.0",
37+
"babel-plugin-transform-object-rest-spread": "^6.22.0",
38+
"babel-plugin-transform-regenerator": "^6.22.0",
39+
"babel-plugin-transform-runtime": "^6.22.0",
40+
"babel-preset-es2015": "^6.22.0",
4041
"chai": "3.5.0",
4142
"chai-as-promised": "^6.0.0",
4243
"chai-spies": "0.7.1",
4344
"cz-conventional-changelog": "1.2.0",
44-
"eslint": "^3.12.2",
45-
"eslint-config-airbnb": "10.0.1",
46-
"eslint-plugin-flowtype": "^2.29.1",
45+
"eslint": "^3.14.0",
46+
"eslint-config-airbnb-base": "^11.0.1",
47+
"eslint-plugin-flowtype": "^2.30.0",
4748
"eslint-plugin-import": "^2.2.0",
48-
"eslint-plugin-jsx-a11y": "2.2.1",
49-
"eslint-plugin-react": "6.2.0",
50-
"flow-bin": "^0.37.0",
49+
"flow-bin": "^0.38.0",
50+
"graphql": "^0.9.0",
51+
"graphql-compose": "^1.10.0",
5152
"mocha": "^3.2.0",
52-
"nyc": "^10.0.0",
53+
"nyc": "^10.1.2",
5354
"rimraf": "2.5.4",
54-
"sane": "1.4.1",
55+
"sane": "^1.5.0",
5556
"semantic-release": "^6.3.2"
5657
},
5758
"dependencies": {
58-
"babel-runtime": "^6.20.0"
59+
"babel-runtime": "^6.22.0"
5960
},
6061
"config": {
6162
"commitizen": {
@@ -83,7 +84,8 @@
8384
"lint": "eslint src test *.js",
8485
"test": "babel-node ./node_modules/.bin/_mocha --compilers js:babel-core/register --reporter dot --require ./resources/mocha-bootload src/**/__tests__/**/*-test.js",
8586
"watch": "babel-node ./resources/watch.js",
86-
"link": "npm link graphql && npm link graphql-compose && npm link",
87+
"link": "yarn link graphql && yarn link graphql-compose && yarn link",
88+
"unlink": "yarn unlink graphql && yarn unlink graphql-compose && yarn add graphql graphql-compose",
8789
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
8890
}
8991
}

0 commit comments

Comments
 (0)