From dcf9790da0a659863c80bbd9b0aeb557078676bc Mon Sep 17 00:00:00 2001 From: Futago-za Ryuu Date: Sun, 20 Aug 2017 06:57:10 +0100 Subject: [PATCH] Ensure 'package-lock.json' is never created I've noticed on Travis that if a project is testing on Node.js 8 then NPM will automatically create the 'package-lock.json' file, but it's best not to use this file yet. See https://github.com/pegjs/pegjs/commit/10ec7f0576a9d070b0bb9542d98250a0a0576a2a --- .npmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .npmrc diff --git a/.npmrc b/.npmrc new file mode 100644 index 0000000..43c97e7 --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +package-lock=false