Skip to content

Commit

Permalink
feat: bump Node.js version requirement to 12.13.0
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Node.js 12 LTS 'Erbium' is now the minimum required version
  • Loading branch information
iiroj authored and okonet committed May 7, 2021
1 parent db861ce commit 852aa6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/main.yml
Expand Up @@ -20,9 +20,8 @@ jobs:
test:
strategy:
matrix:
# Test with Node.js v10 (LTS), v12 (LTS), v14 (LTS), and v16 (latest)
# Test with Node.js v12 (LTS), v14 (LTS), and v16 (latest)
node:
- 10
- 12
- 14
- 16
Expand Down
2 changes: 1 addition & 1 deletion bin/lint-staged.js
Expand Up @@ -17,7 +17,7 @@ const pkg = require('../package.json')
require('please-upgrade-node')(
Object.assign({}, pkg, {
engines: {
node: '>=10.13.0', // First LTS release of 'Dubnium'
node: '>=12.13.0', // First LTS release of 'Erbium'
},
})
)
Expand Down

0 comments on commit 852aa6e

Please sign in to comment.