Skip to content

Commit ed6049b

Browse files
committed
fix: update node version circleci config
- eslint supports 8.10 and above
1 parent 35463d8 commit ed6049b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: circleci/node:8.9.1
5+
- image: circleci/node:8.16.2
66
steps:
77
- checkout
88
- run:

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@
1818
],
1919
"bin": "./bin/purgecss",
2020
"scripts": {
21-
"test": "npx jest __tests__/.+.test.js",
21+
"test": "jest __tests__/.+.test.js",
2222
"dev": "rollup -c rollup.config.js -w",
2323
"build": "rollup -c rollup.config.js",
24-
"flow": "npx flow",
25-
"lint": "npx eslint -c .eslintrc src/",
26-
"prettier": "npx prettier --write --print-width 100 --tab-width 4 --no-semi --single-quote '{src,__{tests,mocks}__}/**/*.js'"
24+
"flow": "flow",
25+
"lint": "eslint -c .eslintrc src/",
26+
"prettier": "prettier --write --print-width 100 --tab-width 4 --no-semi --single-quote '{src,__{tests,mocks}__}/**/*.js'"
2727
},
2828
"repository": {
2929
"type": "git",
@@ -59,7 +59,7 @@
5959
"babel-eslint": "^10.0.3",
6060
"babel-jest": "^24.9.0",
6161
"codacy-coverage": "^3.4.0",
62-
"eslint": "^6.5.1",
62+
"eslint": "^6.6.0",
6363
"eslint-plugin-flowtype": "^4.3.0",
6464
"flow-bin": "^0.110.0",
6565
"jest": "^24.9.0",

0 commit comments

Comments
 (0)