Skip to content

Commit ccaceae

Browse files
authored
Merge pull request #1775 from murgatroid99/grpc-native_node-pre-gyp_fix
native: Fix reference to node-pre-gyp
2 parents 64e699c + 52d44f5 commit ccaceae

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

packages/grpc-native-core/binding.gyp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
'GPR_BACKWARDS_COMPATIBILITY_MODE',
9292
'GRPC_ARES=1',
9393
'GRPC_UV',
94-
'GRPC_NODE_VERSION="1.24.8"',
94+
'GRPC_NODE_VERSION="1.24.9"',
9595
'CARES_STATICLIB',
9696
'CARES_SYMBOL_HIDING'
9797
],

packages/grpc-native-core/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
settings:
22
'#': It's possible to have node_version here as a key to override the core's version.
3-
node_version: 1.24.8
3+
node_version: 1.24.9

packages/grpc-native-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grpc",
3-
"version": "1.24.8",
3+
"version": "1.24.9",
44
"author": "Google Inc.",
55
"description": "gRPC Library for Node",
66
"homepage": "https://grpc.io/",

packages/grpc-native-core/src/grpc_extension.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
'use strict';
2525

26-
var binary = require('node-pre-gyp/lib/pre-binding');
26+
var binary = require('@mapbox/node-pre-gyp/lib/pre-binding');
2727
var path = require('path');
2828
var binding_path =
2929
binary.find(path.resolve(path.join(__dirname, '../package.json')));

0 commit comments

Comments
 (0)