From 864790d6643a19d5e4f982eec9c8eccf7d024bbe Mon Sep 17 00:00:00 2001 From: Paul Melnikow Date: Mon, 10 Feb 2020 22:58:30 -0500 Subject: [PATCH] Require Node 10+ (#1895) BREAKING CHANGE --- .github/workflows/continuous-integration.yaml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yaml b/.github/workflows/continuous-integration.yaml index adc0bca39..da4e69f43 100644 --- a/.github/workflows/continuous-integration.yaml +++ b/.github/workflows/continuous-integration.yaml @@ -121,5 +121,5 @@ jobs: strategy: fail-fast: false matrix: - node-version: [8, 10, 12, 13] + node-version: [10, 12, 13] os: [macos-latest, ubuntu-latest, windows-latest] diff --git a/package.json b/package.json index 210f72d45..389755ffa 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "url": "http://github.com/nock/nock/issues" }, "engines": { - "node": ">= 8.0" + "node": ">= 10.13" }, "main": "./index.js", "types": "types",