Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 6831925

Browse files
committed
feat(package): node 21 support
1 parent 6081731 commit 6831925

File tree

6 files changed

+8
-0
lines changed

6 files changed

+8
-0
lines changed

.github/workflows/alpine.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- 18
2020
- 19
2121
- 20
22+
- 21
2223

2324
steps:
2425
- name: Install Alpine build tools

.github/workflows/macos.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- 18
1919
- 19
2020
- 20
21+
- 21
2122

2223
steps:
2324
- uses: actions/checkout@v4

.github/workflows/windows.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
- 18
1919
- 19
2020
- 20
21+
- 21
2122

2223
architecture:
2324
- x64

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ Below is a quick guide for minimum and maximum supported versions of node-sass:
1717

1818
NodeJS | Supported node-sass version | Node Module
1919
--------|-----------------------------|------------
20+
Node 21 | 9.0+ | 119
2021
Node 20 | 9.0+ | 115
2122
Node 19 | 8.0+ | 111
2223
Node 18 | 8.0+ | 108

appveyor.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@
4545
- nodejs_version: 20
4646
GYP_MSVS_VERSION: 2019
4747
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
48+
- nodejs_version: 21
49+
GYP_MSVS_VERSION: 2019
50+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
4851

4952

5053
install:

lib/extensions.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ function getHumanNodeVersion(abi) {
8585
case 108: return 'Node.js 18.x';
8686
case 111: return 'Node.js 19.x';
8787
case 115: return 'Node.js 20.x';
88+
case 120: return 'Node.js 21.x';
8889
default: return false;
8990
}
9091
}

0 commit comments

Comments
 (0)