Skip to content

Commit 47d6f24

Browse files
committed
Add support for node 10
1 parent 17a3558 commit 47d6f24

3 files changed

Lines changed: 20 additions & 7 deletions

File tree

.travis.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
- stage: build
1818
node_js: "9"
1919
os: linux
20+
- stage: build
21+
node_js: "10"
22+
os: linux
2023
- stage: build
2124
node_js: "6"
2225
os: osx
@@ -29,6 +32,9 @@ jobs:
2932
- stage: build
3033
node_js: "9"
3134
os: osx
35+
- stage: build
36+
node_js: "10"
37+
os: osx
3238
addons:
3339
apt:
3440
sources:

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,14 @@ Please also refer to the **[Documentation](https://prior99.github.io/native-imag
2929

3030
This is a native Addon to NodeJS which delivers prebuilt binaries. Only some environments are supported:
3131

32-
| Node Version | Windows 64-Bit | Windows 32-Bit | Linux 64-Bit | Linux 32-Bit | OSX |
33-
|-------------------|--------------------|--------------------|--------------------|--------------|--------------------|
34-
| Earlier ||||||
35-
| Node 6 *(Abi 48)* ||||||
36-
| Node 7 *(Abi 51)* ||||||
37-
| Node 8 *(Abi 57)* ||||||
38-
| Node 9 *(Abi 59)* ||||||
32+
| Node Version | Windows 64-Bit | Windows 32-Bit | Linux 64-Bit | Linux 32-Bit | OSX |
33+
|--------------------|--------------------|--------------------|--------------------|--------------|--------------------|
34+
| Earlier ||||||
35+
| Node 6 *(Abi 48)* ||||||
36+
| Node 7 *(Abi 51)* ||||||
37+
| Node 8 *(Abi 57)* ||||||
38+
| Node 9 *(Abi 59)* ||||||
39+
| Node 10 *(Abi 64)* ||||||
3940

4041
## Usage
4142

appveyor.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@
3737
- nodejs_version: 9
3838
GYP_MSVS_VERSION: 2015
3939
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
40+
- nodejs_version: 10
41+
GYP_MSVS_VERSION: 2015
42+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
4043
install:
4144
- git submodule update --init --recursive
4245
- ps: Install-Product node $env:nodejs_version $env:platform
@@ -96,6 +99,9 @@
9699
- nodejs_version: 9
97100
GYP_MSVS_VERSION: 2015
98101
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
102+
- nodejs_version: 10
103+
GYP_MSVS_VERSION: 2015
104+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
99105
install:
100106
- git submodule update --init --recursive
101107
- ps: Install-Product node $env:nodejs_version $env:platform

0 commit comments

Comments
 (0)