Skip to content

Commit 1e1d3c9

Browse files
authored
chore(deps): switch from node-pre-gyp to @mapbox/node-pre-gyp (#158)
1 parent 46e42c1 commit 1e1d3c9

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"delay": "^5.0.0",
3434
"findit2": "^2.2.3",
3535
"nan": "^2.14.0",
36-
"node-pre-gyp": "^0.17.0",
36+
"@mapbox/node-pre-gyp": "^1.0.0",
3737
"p-limit": "^3.0.0",
3838
"pify": "^5.0.0",
3939
"protobufjs": "~6.10.0",

ts/src/heap-profiler-bindings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import * as path from 'path';
1818

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

21-
const binary = require('node-pre-gyp');
21+
const binary = require('@mapbox/node-pre-gyp');
2222
const bindingPath = binary.find(
2323
path.resolve(path.join(__dirname, '../../package.json'))
2424
);

ts/src/time-profiler-bindings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
import * as path from 'path';
1717
import {TimeProfile} from './v8-types';
1818

19-
const binary = require('node-pre-gyp');
19+
const binary = require('@mapbox/node-pre-gyp');
2020
const bindingPath = binary.find(
2121
path.resolve(path.join(__dirname, '../../package.json'))
2222
);

0 commit comments

Comments
 (0)