From 8c18c16c5e3002c710630f8119c31f042b53c406 Mon Sep 17 00:00:00 2001 From: CD Cabrera Date: Tue, 2 May 2023 00:20:53 -0400 Subject: [PATCH] build(nodejs): remove 14 support (#59) --- .github/workflows/integration.yml | 4 ++-- CONTRIBUTING.md | 6 +++--- README.md | 4 ++-- package.json | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 6a0d1cf..f5090a5 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -4,14 +4,14 @@ on: branches: [ main ] pull_request: env: - COV_NODE_VERSION: 16 + COV_NODE_VERSION: 18 jobs: Integration-checks: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [16.x, 18.x] steps: - uses: actions/checkout@v3 - name: Setup Node.js ${{ matrix.node-version }} diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 0d51ffd..e3de138 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,9 +8,9 @@ commit messaging follow the format ``` ### Build Requirements -To setup your work environment you'll need to use - * [NodeJS version 14+](https://nodejs.org/) - * [Yarn 1.22+](https://yarnpkg.com) +To set up your work environment you'll need to use + * [NodeJS](https://nodejs.org/) + * [Yarn](https://yarnpkg.com) ### Develop with testing To start work diff --git a/README.md b/README.md index da23a6e..aee1138 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ Generate a changelog with [conventional commit types](https://www.conventionalco ## Requirements The basic requirements: - * [NodeJS version 14+](https://nodejs.org/) + * [NodeJS version 16+](https://nodejs.org/) * Optionally your system could be running - - [Yarn 1.22+](https://yarnpkg.com), otherwise NPM should be adequate. + - [Yarn](https://yarnpkg.com), otherwise NPM should be adequate. ## Use diff --git a/package.json b/package.json index f6682ba..c248341 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "history" ], "engines": { - "node": ">=14.0.0" + "node": ">=16.0.0" }, "files": [ "src/*.js"