1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2026-06-13 01:45:29 -04:00

return to supporting node >= 8

downgraded xo and mocha. bin-wrapper still supports >= 6, which is really all that matters.
This commit is contained in:
2020-04-25 14:23:59 -04:00
parent 66476fbd78
commit 42d0565f27
3 changed files with 702 additions and 1747 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
node: [14.x, 13.x, 12.x, 10.x]
node: [14.x, 12.x, 10.x, 8.x]
fail-fast: false
runs-on: ${{ matrix.os }}
name: Node ${{ matrix.node }} on ${{ matrix.os }}
+698 -1743
View File
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -30,15 +30,15 @@
},
"devDependencies": {
"bin-check": "^4.1.0",
"mocha": "*",
"xo": "*"
"mocha": "~6.x",
"xo": "~0.25.x"
},
"scripts": {
"postinstall": "node lib/install.js",
"test": "xo && mocha && node cli.js env"
},
"engines": {
"node": ">=10"
"node": ">=8"
},
"files": [
"lib/*.js",