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

Commit

Permalink
npm install should do node-gyp rebuild
Browse files Browse the repository at this point in the history
"node-gyp install" installs nodejs header files which is not what
we want to do when building the package. In particular it causes
problems when building the npm module using nix package mgmt system.
  • Loading branch information
Jan Kryl committed Oct 21, 2019
1 parent b665140 commit 8cca6de
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/grpc-native-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "grpc-uds",
"version": "0.1.0",
"version": "0.1.1",
"author": "Jan Kryl & Google Inc.",
"description": "TEMPORARY and EXPERIMENTAL gRPC Library for Node supporting Unix Domain Sockets",
"homepage": "https://grpc.io/",
Expand All @@ -19,9 +19,9 @@
"lib": "src"
},
"scripts": {
"build": "node-gyp build",
"build": "node-gyp rebuild",
"coverage": "istanbul cover ./node_modules/.bin/_mocha test",
"install": "node-gyp install",
"install": "node-gyp rebuild",
"prepack": "git submodule update --init --recursive && npm install"
},
"dependencies": {
Expand Down

0 comments on commit 8cca6de

Please sign in to comment.