Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
chore(deps): upgrade
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop Node.js v8 support
  • Loading branch information
gregberge committed Jun 17, 2020
1 parent 85a0592 commit 6f922cc
Show file tree
Hide file tree
Showing 4 changed files with 3,146 additions and 2,605 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: node_js

node_js:
- 8
- 10
- 12

cache: yarn

Expand Down
44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,38 +34,38 @@
"argos": "yarn build && NODE_ENV=production ./bin/argos upload __fixtures__ --token $ARGOS_CLI_TOKEN || true"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.6.1",
"@babel/preset-env": "^7.6.0",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^3.2.0",
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"conventional-github-releaser": "^3.1.2",
"eslint": "^6.4.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.3.0",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-smooth": "^2.1.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"standard-version": "^7.0.0"
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"standard-version": "^8.0.0"
},
"dependencies": {
"chalk": "^2.4.2",
"commander": "^3.0.1",
"convict": "^5.1.0",
"form-data": "^2.5.1",
"glob": "^7.1.3",
"chalk": "^4.1.0",
"commander": "^5.1.0",
"convict": "^6.0.0",
"form-data": "^3.0.0",
"glob": "^7.1.6",
"glob-promise": "^3.4.0",
"mz": "^2.7.0",
"node-fetch": "^2.3.0",
"raven": "^2.6.4",
"update-notifier": "^3.0.1"
"update-notifier": "^4.1.0"
},
"jest": {
"roots": [
Expand Down
2 changes: 1 addition & 1 deletion src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import convict from 'convict'
const config = convict({
endpoint: {
doc: 'Argos API endpoint',
format: 'url',
format: 'String',
default: 'https://api.argos-ci.com',
env: 'ARGOS_API_ENDPOINT',
},
Expand Down
Loading

0 comments on commit 6f922cc

Please sign in to comment.