From 8ce605c6571a39daefad9f4e37877555e48be1e3 Mon Sep 17 00:00:00 2001 From: Jaeseok Yoon Date: Tue, 2 Oct 2018 09:13:04 +0900 Subject: [PATCH] build: avoid using package-lock.json ```npm install``` creates a ```package-lock.json``` to lock the versions of dependencies that are installed. They recommend to commit this file and that's what I usually do in other projects but we should not use it for this project. This will allow us to always test the latest version of our dependencies (especially in CI). PR-URL: https://github.com/nodejs/node-addon-api/pull/359 Reviewed-By: Michael Dawson Reviewed-By: Sakthipriyan Vairamani Reviewed-By: Nicola Del Gobbo --- .npmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 000000000..43c97e719 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +package-lock=false