From ffc5c5a91ea0ddad863833ec9ec07745663a69b8 Mon Sep 17 00:00:00 2001 From: Zach Wasserman Date: Mon, 3 May 2021 08:10:27 -0700 Subject: [PATCH] Add package-lock.json to .gitignore (#708) --- .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index fe0513dee2..20f75d9f03 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,7 @@ cypress/downloads # Fleet local development DB backups backup.sql.gz + +# Common mistake for new developers to run npm install and then end up +# committing a package-lock.json. Fleet app uses Yarn with yarn.lock. +package-lock.json