Skip to content

Commit

Permalink
build(nodejs): remove node 12 support (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdcabrera committed Nov 19, 2021
1 parent 785df2a commit 3d9cc4f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commit_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- uses: actions/checkout@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
node-version: [14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Setup Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ commit messaging follow the format

### Build Requirements
To setup your work environment you'll need to use
* [NodeJS version 12+](https://nodejs.org/)
* [NodeJS version 14+](https://nodejs.org/)
* [Yarn 1.22+](https://yarnpkg.com)
* And if you plan on making container contributions you may want to setup
- [Docker](https://docs.docker.com/engine/installation/) or
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ a delay to see how your codebase will handle loading scenarios with a balls slow

## Requirements
The basic requirements:
* [NodeJS version 12+](https://nodejs.org/)
* [NodeJS version 14+](https://nodejs.org/)
* Optionally your system could be running
- [Yarn 1.22+](https://yarnpkg.com), otherwise NPM should be adequate.
- [Docker](https://docs.docker.com/engine/installation/)
Expand Down
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"url": "https://github.com/cdcabrera/apidoc-mock/issues"
},
"engines": {
"node": ">=12.0.0"
"node": ">=14.0.0"
},
"bin": {
"mock": "./bin/cli.js"
Expand Down Expand Up @@ -67,6 +67,10 @@
"type": "perf",
"section": "Performance Improvements"
},
{
"type": "build",
"section": "Build Updates"
},
{
"type": "chore",
"section": "Maintenance"
Expand Down

0 comments on commit 3d9cc4f

Please sign in to comment.