Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 139a07a

Browse files
committed
bump to support prebuild output for Node 15
1 parent 7982613 commit 139a07a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ dist: trusty
44
os:
55
- linux
66
- osx
7-
node_js: 14
7+
node_js: 15
88

99
env:
1010
- CC=clang CXX=clang++ npm_config_clang=1

appveyor.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ platform:
55
- x64
66

77
environment:
8-
nodejs_version: "14"
8+
nodejs_version: "15"
99

1010
cache:
1111
- node_modules
@@ -17,7 +17,7 @@ branches:
1717
clone_depth: 10
1818

1919
install:
20-
- ps: Install-Product node $env:nodejs_version x64
20+
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:PLATFORM
2121
- npm install
2222

2323
build_script:

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"lint": "npm run cpplint",
3535
"cpplint": "node-cpplint --filters legal-copyright,build-include,build-namespaces src/*.cc",
3636
"test": "npm run lint && npm rebuild && mocha --require babel-core/register spec/",
37-
"prebuild-node": "prebuild -t 8.9.0 -t 9.4.0 -t 10.11.0 -t 11.9.0 -t 12.0.0 -t 13.0.0 -t 14.0.0 --strip",
37+
"prebuild-node": "prebuild -t 8.9.0 -t 9.4.0 -t 10.11.0 -t 11.9.0 -t 12.0.0 -t 13.0.0 -t 14.0.0 -t 15.0.0 --strip",
3838
"prebuild-node-ia32": "prebuild -t 8.9.0 -t 9.4.0 -a ia32 --strip",
3939
"prebuild-electron": "prebuild -t 7.0.0 -t 8.0.0 -t 9.0.0 -t 10.0.0 -r electron --strip",
4040
"prebuild-electron-arm64": "prebuild -t 7.0.0 -t 8.0.0 -t 9.0.0 -t 10.0.0 -r electron -a arm64 --strip",

0 commit comments

Comments
 (0)