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 0a1fe7c commit 9297cce
Show file tree
Hide file tree
Showing 5 changed files with 2,864 additions and 1,269 deletions.
45 changes: 27 additions & 18 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
{
"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-class-properties",
["transform-runtime", { "polyfill": false }]
"@babel/plugin-proposal-class-properties"
],
"presets": [
["env", {
"targets": {
"node": 4
},
}]
],
[
"@babel/preset-env",
{
"targets": {
"node": 6
}
}
]
]
},
"mjs": {
"plugins": ["transform-class-properties"],
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
[
"env",
"@babel/preset-env",
{
"targets": {
"node": "8.0.0"
Expand All @@ -33,13 +37,18 @@
]
},
"test": {
"plugins": ["transform-class-properties"],
"plugins": [
"@babel/plugin-proposal-class-properties"
],
"presets": [
["env", {
"targets": {
"node": "current"
},
}]
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
Expand Down
1 change: 1 addition & 0 deletions .flowconfig
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
.*/node_modules/travis.*
.*/node_modules/uglify.*
.*/node_modules/yargs.*
.*/node_modules/express-graphql/dist/index.js.flow

[include]

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
51 changes: 26 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,39 +24,40 @@
"url": "https://github.com/graphql-compose/graphql-compose-aws/issues"
},
"homepage": "https://github.com/graphql-compose/graphql-compose-aws#readme",
"dependencies": {
"babel-runtime": "^6.26.0"
},
"peerDependencies": {
"graphql-compose": ">=2.10.1 || >=3.0.0 || >=4.0.0"
"graphql-compose": ">=5.0.1 || >=4.0.0 || >=3.0.0 || >=2.10.1"
},
"devDependencies": {
"aws-sdk": "^2.263.1",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"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/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^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",
"aws-sdk": "^2.308.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": "^5.5.0",
"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",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-flowtype": "^2.50.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"express": "^4.16.3",
"express-graphql": "^0.6.12",
"flow-bin": "^0.75.0",
"graphql": "0.13.2",
"graphql-compose": "^4.4.1",
"jest": "^23.2.0",
"nodemon": "^1.17.5",
"prettier": "^1.13.6",
"flow-bin": "^0.80.0",
"graphql": "14.0.0",
"graphql-compose": "^5.0.2",
"jest": "^23.5.0",
"nodemon": "^1.18.4",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"semantic-release": "^15.6.0"
"semantic-release": "^15.9.12"
},
"config": {
"commitizen": {
Expand Down

0 comments on commit 9297cce

Please sign in to comment.