Skip to content

Commit 4045f17

Browse files
authored
Merge pull request #3 from Prior99/feat/node-10
Add Node 10 Support
2 parents 17a3558 + 41bccde commit 4045f17

5 files changed

Lines changed: 24 additions & 11 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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"jest": "^21.2.1",
6969
"nan": "^2.10.0",
7070
"node-gyp": "^3.6.2",
71-
"node-libpng": "^0.1.2",
71+
"node-libpng": "^0.2.3",
7272
"ts-jest": "^21.2.3",
7373
"tslint": "^5.8.0",
7474
"typedoc": "^0.11.1",

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2212,9 +2212,9 @@ node-int64@^0.4.0:
22122212
version "0.4.0"
22132213
resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b"
22142214

2215-
node-libpng@^0.1.2:
2216-
version "0.1.2"
2217-
resolved "https://registry.yarnpkg.com/node-libpng/-/node-libpng-0.1.2.tgz#9824ff505ce79290220af6fac0f3dd6851151d51"
2215+
node-libpng@^0.2.3:
2216+
version "0.2.3"
2217+
resolved "https://registry.yarnpkg.com/node-libpng/-/node-libpng-0.2.3.tgz#9e0d94575597774dfa74779376ee68e892a6a58b"
22182218
dependencies:
22192219
request "^2.85.0"
22202220

0 commit comments

Comments
 (0)