Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dist: trusty
os:
- linux
- osx
node_js: 14
node_js: 15

env:
- CC=clang CXX=clang++ npm_config_clang=1
Expand Down
5 changes: 3 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ platform:
- x64

environment:
nodejs_version: "14"
nodejs_version: "15"

cache:
- node_modules
Expand All @@ -17,7 +17,7 @@ branches:
clone_depth: 10

install:
- ps: Install-Product node $env:nodejs_version x64
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:PLATFORM
- npm install

build_script:
Expand All @@ -28,6 +28,7 @@ build_script:
- npm run prebuild-electron-ia32
- npm run prebuild-electron-arm64
- if defined APPVEYOR_REPO_TAG_NAME (npm run upload)
- ls prebuilds/

test: off
deploy: off
23 changes: 20 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"lint": "npm run cpplint",
"cpplint": "node-cpplint --filters legal-copyright,build-include,build-namespaces src/*.cc",
"test": "npm run lint && npm build . && mocha --require babel-core/register spec/",
"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",
"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",
"prebuild-node-ia32": "prebuild -t 8.9.0 -t 9.4.0 -a ia32 --strip",
"prebuild-electron": "prebuild -t 7.0.0 -t 8.0.0 -t 9.0.0 -t 10.0.0 -r electron --strip",
"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",
Expand All @@ -47,7 +47,7 @@
"babel-plugin-transform-async-to-generator": "^6.24.1",
"chai": "^4.2.0",
"mocha": "^8.0.1",
"node-abi": "^2.17.0",
"node-abi": "github:shiftkey/node-abi#abe2c8b66c269345bd1cbf3b5f25d5714cf19dc7",
"node-cpplint": "~0.4.0",
"node-gyp": "^7.0.0",
"prebuild": "^10.0.0"
Expand Down