Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop Node 4 support, requires `node >= v6.0.0`
  • Loading branch information
nodkz committed Sep 5, 2018
1 parent 53d185d commit 8a1fec2
Show file tree
Hide file tree
Showing 4 changed files with 2,908 additions and 1,220 deletions.
37 changes: 20 additions & 17 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"plugins": [
"transform-object-rest-spread",
"transform-flow-strip-types",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-transform-flow-strip-types"
],
"env": {
"cjs": {
"plugins": [
["transform-runtime", { "polyfill": false }]
],
"presets": [
["env", {
"targets": {
"node": 4
},
}]
],
[
"@babel/preset-env",
{
"targets": {
"node": 6
}
}
]
]
},
"mjs": {
"presets": [
[
"env",
"@babel/preset-env",
{
"targets": {
"node": "8.0.0"
Expand All @@ -32,11 +32,14 @@
},
"test": {
"presets": [
["env", {
"targets": {
"node": "current"
},
}]
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ cache:
notifications:
email: true
node_js:
- "9"
- "10"
- "8"
before_install: yarn global add greenkeeper-lockfile@1
before_script: greenkeeper-lockfile-update
Expand Down
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,33 +24,33 @@
},
"homepage": "https://github.com/graphql-compose/graphql-compose-relay",
"peerDependencies": {
"graphql-compose": ">=4.0.0"
"graphql-compose": ">=5.0.1 || >=4.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.4.2",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.0.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-prettier": "^2.6.1",
"flow-bin": "^0.75.0",
"graphql": "0.13.2",
"graphql-compose": "^4.4.1",
"jest": "^23.2.0",
"prettier": "^1.13.6",
"eslint": "^5.5.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"flow-bin": "^0.80.0",
"graphql": "14.0.0",
"graphql-compose": "^5.0.1",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"semantic-release": "^15.6.0"
},
"dependencies": {
"babel-runtime": "^6.26.0"
"semantic-release": "^15.9.12"
},
"config": {
"commitizen": {
Expand Down
Loading

0 comments on commit 8a1fec2

Please sign in to comment.