From 852aa6ece128c408a7fdfcceaa952d05076fb4bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iiro=20Ja=CC=88ppinen?= Date: Fri, 7 May 2021 09:32:38 +0300 Subject: [PATCH] feat: bump Node.js version requirement to 12.13.0 BREAKING CHANGE: Node.js 12 LTS 'Erbium' is now the minimum required version --- .github/workflows/main.yml | 3 +-- bin/lint-staged.js | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9873c604f..0eaef47be 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 diff --git a/bin/lint-staged.js b/bin/lint-staged.js index a6fe89754..28c3a692b 100755 --- a/bin/lint-staged.js +++ b/bin/lint-staged.js @@ -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' }, }) )