From cb88d50d3b9f4b4328289b09444036b4d3ab79d5 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 18 Dec 2019 05:50:24 +0000 Subject: [PATCH 1/4] Bump semver from 6.3.0 to 7.1.1 Bumps [semver](https://github.com/npm/node-semver) from 6.3.0 to 7.1.1. - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/master/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v6.3.0...v7.1.1) Signed-off-by: dependabot-preview[bot] --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5177083..455a0bd 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "glob": "^7.1.4", "lodash": "^4.17.15", "parse-author": "^2.0.0", - "semver": "^6.0.0", + "semver": "^7.1.1", "tmp-promise": "^2.0.1" }, "engines": { From aceb0dc951c4166e31b71542b3b12d7464ba283f Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Wed, 18 Dec 2019 21:12:57 -0800 Subject: [PATCH 2/4] chore: require Node 10 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 455a0bd..8191d1d 100644 --- a/package.json +++ b/package.json @@ -46,7 +46,7 @@ "tmp-promise": "^2.0.1" }, "engines": { - "node": ">= 8.3.0" + "node": ">= 10.0.0" }, "ava": { "babel": false, From 69a1b4498d9c9da76ad0a62016a5c17ce86e3b4f Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Wed, 18 Dec 2019 23:00:58 -0800 Subject: [PATCH 3/4] Update CI & README --- .github/workflows/ci.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b252b8..ae61542 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: os: [windows-latest, macOS-latest, ubuntu-latest] - node-version: [8.x, 10.x, 12.x] + node-version: [10.x, 12.x] steps: - name: Fix git checkout line endings diff --git a/README.md b/README.md index f7b903a..afe78d9 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ ## Requirements -Requires Node 8 or greater. +Requires Node 10 or greater. ## Legal From 054fac6ed88aa909100d5df9a8fd3169bc7c2789 Mon Sep 17 00:00:00 2001 From: Mark Lee Date: Wed, 18 Dec 2019 23:03:38 -0800 Subject: [PATCH 4/4] build: install with engine checks --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ae61542..5088f7e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: ${{ runner.OS }}- - name: Install run: | - npm install + npm install --engine-strict npm update - name: Lint run: npm run lint