From 784aa3ebe7c2f83e9ed2433a55924a6b07a2efc4 Mon Sep 17 00:00:00 2001 From: GatsbyJS Bot Date: Fri, 25 Oct 2019 16:03:01 +0000 Subject: [PATCH] feat(starters): Update .gitignore in all starters to ignore .env, .env.development, .env.production, etc. (#18968) * Update '.env' line in .gitignore to '.env*' so that it works for .env.development, .env.production, etc. files * Update '.env' line in the .gitignore file of other starters to '.env*' so that it works for .env.development, .env.production, etc. files --- .gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e86fe25..f813275 100644 --- a/.gitignore +++ b/.gitignore @@ -51,8 +51,8 @@ typings/ # Output of 'npm pack' *.tgz -# dotenv environment variables file -.env +# dotenv environment variable files +.env* # gatsby files .cache/