From 52d44f55d923c6c6d6f20eaa4afa209516ed0f7d Mon Sep 17 00:00:00 2001 From: Michael Lumish Date: Tue, 4 May 2021 09:06:38 -0700 Subject: [PATCH] native: Fix reference to node-pre-gyp --- packages/grpc-native-core/binding.gyp | 2 +- packages/grpc-native-core/build.yaml | 2 +- packages/grpc-native-core/package.json | 2 +- packages/grpc-native-core/src/grpc_extension.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/grpc-native-core/binding.gyp b/packages/grpc-native-core/binding.gyp index 0dce854b3..eeabb2140 100644 --- a/packages/grpc-native-core/binding.gyp +++ b/packages/grpc-native-core/binding.gyp @@ -91,7 +91,7 @@ 'GPR_BACKWARDS_COMPATIBILITY_MODE', 'GRPC_ARES=1', 'GRPC_UV', - 'GRPC_NODE_VERSION="1.24.8"', + 'GRPC_NODE_VERSION="1.24.9"', 'CARES_STATICLIB', 'CARES_SYMBOL_HIDING' ], diff --git a/packages/grpc-native-core/build.yaml b/packages/grpc-native-core/build.yaml index 81903b70c..f9f695965 100644 --- a/packages/grpc-native-core/build.yaml +++ b/packages/grpc-native-core/build.yaml @@ -1,3 +1,3 @@ settings: '#': It's possible to have node_version here as a key to override the core's version. - node_version: 1.24.8 + node_version: 1.24.9 diff --git a/packages/grpc-native-core/package.json b/packages/grpc-native-core/package.json index 8eb4892a3..49163ebc6 100644 --- a/packages/grpc-native-core/package.json +++ b/packages/grpc-native-core/package.json @@ -1,6 +1,6 @@ { "name": "grpc", - "version": "1.24.8", + "version": "1.24.9", "author": "Google Inc.", "description": "gRPC Library for Node", "homepage": "https://grpc.io/", diff --git a/packages/grpc-native-core/src/grpc_extension.js b/packages/grpc-native-core/src/grpc_extension.js index 41ce389bb..1f39df1b4 100644 --- a/packages/grpc-native-core/src/grpc_extension.js +++ b/packages/grpc-native-core/src/grpc_extension.js @@ -23,7 +23,7 @@ 'use strict'; -var binary = require('node-pre-gyp/lib/pre-binding'); +var binary = require('@mapbox/node-pre-gyp/lib/pre-binding'); var path = require('path'); var binding_path = binary.find(path.resolve(path.join(__dirname, '../package.json')));