Skip to content

Commit

Permalink
fix: update node version circleci config
Browse files Browse the repository at this point in the history
- eslint supports 8.10 and above
  • Loading branch information
Ffloriel committed Oct 29, 2019
1 parent 35463d8 commit ed6049b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Expand Up @@ -2,7 +2,7 @@ version: 2
jobs:
build:
docker:
- image: circleci/node:8.9.1
- image: circleci/node:8.16.2
steps:
- checkout
- run:
Expand Down
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -18,12 +18,12 @@
],
"bin": "./bin/purgecss",
"scripts": {
"test": "npx jest __tests__/.+.test.js",
"test": "jest __tests__/.+.test.js",
"dev": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js",
"flow": "npx flow",
"lint": "npx eslint -c .eslintrc src/",
"prettier": "npx prettier --write --print-width 100 --tab-width 4 --no-semi --single-quote '{src,__{tests,mocks}__}/**/*.js'"
"flow": "flow",
"lint": "eslint -c .eslintrc src/",
"prettier": "prettier --write --print-width 100 --tab-width 4 --no-semi --single-quote '{src,__{tests,mocks}__}/**/*.js'"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -59,7 +59,7 @@
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"codacy-coverage": "^3.4.0",
"eslint": "^6.5.1",
"eslint": "^6.6.0",
"eslint-plugin-flowtype": "^4.3.0",
"flow-bin": "^0.110.0",
"jest": "^24.9.0",
Expand Down

0 comments on commit ed6049b

Please sign in to comment.