Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Commit

Permalink
feat!: drop support of node version 12 and 17 #270
Browse files Browse the repository at this point in the history
BREAKING CHANGE: node 12 and 17 are no longer supported
  • Loading branch information
rudxde committed Jul 8, 2022
1 parent 39a9788 commit bab367e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-test.yml
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 17.x, 18.x]
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 17.x, 18.x]
node-version: [14.x, 16.x, 18.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
Expand Down
3 changes: 1 addition & 2 deletions README.md
Expand Up @@ -8,8 +8,7 @@ It generates a multistage build Dockerfile, with stages for each package.

## Software requirements

The current nodejs major versions 12.x, 14.x 16.x, 17.x and 18.x are supported.
_(With the end of live at April 30 2022, node 12 will no longer be supported)_
The current nodejs major versions 14.x 16.x and 18.x are supported.

> Dockerfiles generated with `lerna-dockerize` work with the default docker builder, but it is recommended to use the new [Docker BuildKit](https://docs.docker.com/develop/develop-images/build_enhancements/) engine. With Docker BuildKit and the use of the [`addPrepareStages`](#configuration) option, you can get more speed out of your builds.
Expand Down

0 comments on commit bab367e

Please sign in to comment.