Skip to content
This repository has been archived by the owner on Jun 6, 2021. It is now read-only.

Update deps #88

Merged
merged 3 commits into from
Apr 24, 2019
Merged
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 .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ config_steps: &config_steps

- run:
name: Checkout code submodules
command: git submodule update --init --recursive --remote
command: git submodule update --init --recursive

- run:
name: 'Configure Environment'
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).

### Changed
- Updated npm dependencies.

## [2.4.2] - 2019-03-11
### Changed
- Moved back to using NAN from N-API to hopefully fix some segmentation faults.
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,19 +36,19 @@
],
"dependencies": {
"detect-libc": "^1.0.3",
"nan": "^2.12.1",
"nan": "^2.13.2",
"npmlog": "^4.1.2",
"prebuild-install": "^5.2.4",
"prebuild-install": "^5.3.0",
"which-pm-runs": "^1.0.0"
},
"devDependencies": {
"ava": "^1.3.1",
"ava": "^1.4.1",
"cross-env": "^5.2.0",
"cross-spawn": "^6.0.5",
"node-abi": "^2.7.1",
"node-gyp": "^3.8.0",
"node-gyp": "^4.0.0",
"npm-run-path-compat": "^2.0.3",
"prebuild": "^8.2.0"
"prebuild": "^8.2.1"
},
"scripts": {
"install": "node ./scripts/install.js || node-gyp rebuild",
Expand Down
1 change: 0 additions & 1 deletion src/common/allocator.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ void Allocator::Free(void* opaque, void* address) {
}

AllocatedBuffer* buf = GetBufferInfo(address);
int64_t size = buf->size + sizeof(*buf);

if (opaque) {
Allocator* alloc = static_cast<Allocator*>(opaque);
Expand Down