From 80bfd5145c7b159ebdad3746efe11378b282fa86 Mon Sep 17 00:00:00 2001
From: silverwind <me@silverwind.io>
Date: Mon, 13 Jan 2020 00:11:43 +0100
Subject: [PATCH] add package-lock=true in .npmrc (#9736)

Some users (like me) have this option disabled in their global npm
config which can lead to package-lock.json not being updated. This
explicitely enables the option for this repo, so that the file is
always updated when adding/removing dependencies.

Co-authored-by: techknowlogick <matti@mdranta.net>
Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com>
---
 .npmrc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.npmrc b/.npmrc
index cffe8cdef1..dc8b06aad2 100644
--- a/.npmrc
+++ b/.npmrc
@@ -1 +1,2 @@
+package-lock=true
 save-exact=true