Skip to content

Commit 340be0f

Browse files
committedOct 6, 2022
build: eslint@8.24.0
1 parent 33e8dc3 commit 340be0f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ jobs:
133133
shell: bash
134134
run: |
135135
# eslint for linting
136-
# - remove on Node.js < 10
137-
if [[ "$(cut -d. -f1 <<< "${{ matrix.node-version }}")" -lt 10 ]]; then
136+
# - remove on Node.js < 12
137+
if [[ "$(cut -d. -f1 <<< "${{ matrix.node-version }}")" -lt 12 ]]; then
138138
node -pe 'Object.keys(require("./package").devDependencies).join("\n")' | \
139139
grep -E '^eslint(-|$)' | \
140140
sort -r | \

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"cookie-parser": "1.4.6",
6767
"cookie-session": "2.0.0",
6868
"ejs": "3.1.8",
69-
"eslint": "7.32.0",
69+
"eslint": "8.24.0",
7070
"express-session": "1.17.2",
7171
"hbs": "4.2.0",
7272
"marked": "0.7.0",

0 commit comments

Comments
 (0)
Please sign in to comment.