Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: drop Node 19 and Node 16 #3366

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/alpine.yml
Expand Up @@ -15,9 +15,7 @@ jobs:
fail-fast: false
matrix:
node:
- 16
- 18
- 19
- 20

steps:
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/linux.yml
Expand Up @@ -14,18 +14,10 @@ jobs:
fail-fast: false
matrix:
include:
- node: 16
gcc: "gcc-8"
gpp: "g++-8"
os: ubuntu-20.04
- node: 18
gcc: "gcc-8"
gpp: "g++-8"
os: ubuntu-20.04
- node: 19
gcc: "gcc-8"
gpp: "g++-8"
os: ubuntu-20.04
- node: 20
gcc: "gcc-10"
gpp: "g++-10"
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/macos.yml
Expand Up @@ -14,9 +14,7 @@ jobs:
fail-fast: false
matrix:
node:
- 16
- 18
- 19
- 20

steps:
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/windows.yml
Expand Up @@ -14,9 +14,7 @@ jobs:
fail-fast: false
matrix:
node:
- 16
- 18
- 19
- 20

architecture:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -18,10 +18,10 @@ Below is a quick guide for minimum and maximum supported versions of node-sass:
NodeJS | Supported node-sass version | Node Module
--------|-----------------------------|------------
Node 20 | 9.0+ | 115
Node 19 | 8.0+ | 111
Node 19 | 8.0+, <=9.0 | 111
Node 18 | 8.0+ | 108
Node 17 | 7.0+, <8.0 | 102
Node 16 | 6.0+ | 93
Node 16 | 6.0+, <=9.0 | 93
Node 15 | 5.0+, <7.0 | 88
Node 14 | 4.14+, <9.0 | 83
Node 13 | 4.13+, <5.0 | 79
Expand Down
6 changes: 0 additions & 6 deletions appveyor.yml
Expand Up @@ -33,15 +33,9 @@
environment:
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI: true
matrix:
- nodejs_version: 16
GYP_MSVS_VERSION: 2019
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- nodejs_version: 18
GYP_MSVS_VERSION: 2019
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- nodejs_version: 19
GYP_MSVS_VERSION: 2019
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- nodejs_version: 20
GYP_MSVS_VERSION: 2019
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -16,7 +16,7 @@
"url": "http://andrew.github.com"
},
"engines": {
"node": ">=16"
"node": ">=18"
},
"main": "lib/index.js",
"nodeSassConfig": {
Expand Down