Skip to content

Commit

Permalink
chore(deps): switch from node-pre-gyp to @mapbox/node-pre-gyp (#158)
Browse files Browse the repository at this point in the history
  • Loading branch information
nolanmar511 committed Mar 30, 2021
1 parent 46e42c1 commit 1e1d3c9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -33,7 +33,7 @@
"delay": "^5.0.0",
"findit2": "^2.2.3",
"nan": "^2.14.0",
"node-pre-gyp": "^0.17.0",
"@mapbox/node-pre-gyp": "^1.0.0",
"p-limit": "^3.0.0",
"pify": "^5.0.0",
"protobufjs": "~6.10.0",
Expand Down
2 changes: 1 addition & 1 deletion ts/src/heap-profiler-bindings.ts
Expand Up @@ -18,7 +18,7 @@ import * as path from 'path';

import {AllocationProfileNode} from './v8-types';

const binary = require('node-pre-gyp');
const binary = require('@mapbox/node-pre-gyp');
const bindingPath = binary.find(
path.resolve(path.join(__dirname, '../../package.json'))
);
Expand Down
2 changes: 1 addition & 1 deletion ts/src/time-profiler-bindings.ts
Expand Up @@ -16,7 +16,7 @@
import * as path from 'path';
import {TimeProfile} from './v8-types';

const binary = require('node-pre-gyp');
const binary = require('@mapbox/node-pre-gyp');
const bindingPath = binary.find(
path.resolve(path.join(__dirname, '../../package.json'))
);
Expand Down

0 comments on commit 1e1d3c9

Please sign in to comment.