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

Commit 5a4a48a

Browse files
committed
feat: Add Node 14 support
1 parent b54053a commit 5a4a48a

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

.travis.yml

+9-3
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,18 @@ env:
99
jobs:
1010
include:
1111
- stage: test
12-
node_js: "node"
12+
node_js: "14"
1313
os: linux
1414
before_script: npm run lint || exit 1;
1515
after_success: npm run-script coverage;
1616
- stage: platform-test
17-
node_js: "node"
17+
node_js: "14"
18+
os: osx
19+
- stage: platform-test
20+
node_js: "13"
21+
os: linux
22+
- stage: platform-test
23+
node_js: "13"
1824
os: osx
1925
- stage: platform-test
2026
node_js: "12"
@@ -87,7 +93,7 @@ before_install:
8793
- echo $TRAVIS_NODE_VERSION
8894
- npm config set python `which python`
8995
- if [ $TRAVIS_OS_NAME == "linux" ]; then
90-
if [[ $(node -v) =~ v1[23] ]]; then
96+
if [[ $(node -v) =~ v1[234] ]]; then
9197
export CC="gcc-6";
9298
export CXX="g++-6";
9399
export LINK="gcc-6";

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
NodeJS | Minimum node-sass version | Node Module
66
--------|--------------------------|------------
7+
Node 14 | 4.14+ | 83
78
Node 13 | 4.13+ | 79
89
Node 12 | 4.12+ | 72
910
Node 11 | 4.10+ | 67

appveyor.yml

+6
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@
7979
- nodejs_version: 13
8080
GYP_MSVS_VERSION: 2017
8181
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
82+
- nodejs_version: 14
83+
GYP_MSVS_VERSION: 2017
84+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
8285

8386
install:
8487
# https://www.appveyor.com/docs/lang/nodejs-iojs/#installing-any-version-of-nodejs-or-iojs
@@ -179,6 +182,9 @@
179182
- nodejs_version: 13
180183
GYP_MSVS_VERSION: 2017
181184
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
185+
- nodejs_version: 14
186+
GYP_MSVS_VERSION: 2017
187+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
182188

183189
install:
184190
# https://www.appveyor.com/docs/lang/nodejs-iojs/#installing-any-version-of-nodejs-or-iojs

lib/extensions.js

+1
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ function getHumanNodeVersion(abi) {
7979
case 67: return 'Node.js 11.x';
8080
case 72: return 'Node.js 12.x';
8181
case 79: return 'Node.js 13.x';
82+
case 83: return 'Node.js 14.x';
8283
default: return false;
8384
}
8485
}

0 commit comments

Comments
 (0)