Skip to content

Commit c76d8d8

Browse files
authored
Merge pull request TryGhost#978 from kewde/patch-1
Node v10 support (WIP)
2 parents d9ce770 + 1a26282 commit c76d8d8

3 files changed

Lines changed: 17 additions & 3 deletions

File tree

.travis.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,13 @@ addons:
1818
matrix:
1919
include:
2020
# Linux
21+
- os: linux
22+
compiler: clang
23+
env: NODE_VERSION="10"
24+
addons:
25+
apt:
26+
sources: [ 'ubuntu-toolchain-r-test','llvm-toolchain-precise-3.5', 'gcc-multilib', 'g++-multilib', 'libsqlite3-dev:i386' ]
27+
packages: [ 'clang-3.5']
2128
- os: linux
2229
compiler: clang
2330
env: NODE_VERSION="9"
@@ -74,7 +81,10 @@ matrix:
7481
env: NODE_VERSION="5" COVERAGE=true PUBLISHABLE=false # node abi 47
7582
- os: osx
7683
compiler: clang
77-
env: NODE_VERSION="9" # node abi 58
84+
env: NODE_VERSION="10" # node abi 64
85+
- os: osx
86+
compiler: clang
87+
env: NODE_VERSION="9" # node abi 59
7888
- os: osx
7989
compiler: clang
8090
env: NODE_VERSION="8" # node abi 57

appveyor.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ environment:
2424
platform: x64
2525
- nodejs_version: 9
2626
platform: x86
27+
- nodejs_version: 10
28+
platform: x64
29+
- nodejs_version: 10
30+
platform: x86
2731

2832
os: Visual Studio 2015
2933

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
"url": "git://github.com/mapbox/node-sqlite3.git"
3838
},
3939
"dependencies": {
40-
"nan": "~2.9.2",
41-
"node-pre-gyp": "~0.9.0"
40+
"nan": "~2.10.0",
41+
"node-pre-gyp": "~0.10.0"
4242
},
4343
"bundledDependencies": [
4444
"node-pre-gyp"

0 commit comments

Comments
 (0)