From 74aaced74a8115216bc1c844713037e375330785 Mon Sep 17 00:00:00 2001 From: Charmander <~@charmander.me> Date: Sun, 15 Oct 2017 18:37:36 -0700 Subject: [PATCH] Avoid modifying package.json or creating package-lock when running tests with npm 5 Should save some confusion in future pull requests (#1465, #1436, #1363). --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 05736465b..a5b0bc1da 100644 --- a/Makefile +++ b/Makefile @@ -42,7 +42,7 @@ test-missing-native: @rm -rf node_modules/libpq node_modules/pg-native/index.js: - @npm i pg-native + @npm i --no-save pg-native test-native: node_modules/pg-native/index.js test-connection @echo "***Testing native bindings***"