We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0dc526 commit 7c5d149Copy full SHA for 7c5d149
.github/workflows/ci.yml
@@ -126,8 +126,8 @@ jobs:
126
shell: bash
127
run: |
128
# eslint for linting
129
- # - remove on Node.js < 8
130
- if [[ "$(cut -d. -f1 <<< "${{ matrix.node-version }}")" -lt 8 ]]; then
+ # - remove on Node.js < 10
+ if [[ "$(cut -d. -f1 <<< "${{ matrix.node-version }}")" -lt 10 ]]; then
131
node -pe 'Object.keys(require("./package").devDependencies).join("\n")' | \
132
grep -E '^eslint(-|$)' | \
133
sort -r | \
package.json
@@ -19,7 +19,7 @@
19
],
20
"repository": "visionmedia/bytes.js",
21
"devDependencies": {
22
- "eslint": "6.8.0",
+ "eslint": "7.32.0",
23
"mocha": "6.2.3",
24
"nyc": "13.3.0"
25
},
0 commit comments