Skip to content

Commit

Permalink
fix: tighten os requirements
Browse files Browse the repository at this point in the history
This matches the new npm@8 engines field
  • Loading branch information
wraithgar committed Sep 29, 2021
1 parent eb27af9 commit 0d2e430
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [12.0.x, 12.x, 14.0.x, 14.x, 15.x, 16.x]
node-version: [12.13.0, 12.x, 14.15.0, 14.x, 16.x]
platform:
- os: ubuntu-latest
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion lib/content/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [12.0.x, 12.x, 14.0.x, 14.x, 15.x, 16.x]
node-version: [12.13.0, 12.x, 14.15.0, 14.x, 16.x]
platform:
- os: ubuntu-latest
shell: bash
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
"npm-template-check": "bin/npm-template-check.js"
},
"scripts": {
"prelint": "ln -sf ../../bin/npm-template-check.js node_modules/.bin/npm-template-check",
"lint": "eslint '**/*.js'",
"postlint": "npm-template-check",
"lintfix": "npm run lint -- --fix",
"preversion": "npm test",
"postinstall": "node bin/postinstall.js",
"postlint": "npm-template-check",
"posttest": "npm run lint",
"postversion": "npm publish",
"prelint": "ln -sf ../../bin/npm-template-check.js node_modules/.bin/npm-template-check",
"prepublishOnly": "git push origin --follow-tags",
"preversion": "npm test",
"snap": "tap",
"test": "tap",
"posttest": "npm run lint",
"postinstall": "node bin/postinstall.js"
"test": "tap"
},
"repository": {
"type": "git",
Expand Down Expand Up @@ -50,6 +50,6 @@
},
"templateVersion": "1.0.3",
"engines": {
"node": ">=12"
"node": "^12.13.0 || ^14.15.0 || >=16"
}
}

0 comments on commit 0d2e430

Please # to comment.