From a510d5a4050cb114b77f1e7c6d2f59396b7d407a Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Thu, 9 Feb 2017 00:05:38 -0600 Subject: [PATCH 1/3] fix: add yarn gitignores to template --- packages/react-scripts/template/gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/react-scripts/template/gitignore b/packages/react-scripts/template/gitignore index 45edb3c7d80..3a0dee0fb29 100644 --- a/packages/react-scripts/template/gitignore +++ b/packages/react-scripts/template/gitignore @@ -13,3 +13,6 @@ .DS_Store .env npm-debug.log +yarn-debug.log* +yarn-error.log* + From d6634592ab42f8fa09f90dc845a99c46fdf0fee9 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Thu, 9 Feb 2017 00:10:54 -0600 Subject: [PATCH 2/3] fix: add yarn gitignores to root --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 7444dad4ec2..e8009fa3b9f 100644 --- a/.gitignore +++ b/.gitignore @@ -6,4 +6,6 @@ my-app* template/src/__tests__/__snapshots__/ lerna-debug.log npm-debug.log +yarn-debug.log* +yarn-error.log* /.changelog From 539c61810545f78a3bec2c0bc1d85bc48b858b33 Mon Sep 17 00:00:00 2001 From: "Anders D. Johnson" Date: Fri, 10 Feb 2017 19:10:52 -0600 Subject: [PATCH 3/3] fix: add wildcard to npm-debug.log ignore --- .gitignore | 2 +- packages/react-scripts/template/gitignore | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e8009fa3b9f..0aa0ed568ba 100644 --- a/.gitignore +++ b/.gitignore @@ -5,7 +5,7 @@ build my-app* template/src/__tests__/__snapshots__/ lerna-debug.log -npm-debug.log +npm-debug.log* yarn-debug.log* yarn-error.log* /.changelog diff --git a/packages/react-scripts/template/gitignore b/packages/react-scripts/template/gitignore index 3a0dee0fb29..4fa4a53764b 100644 --- a/packages/react-scripts/template/gitignore +++ b/packages/react-scripts/template/gitignore @@ -12,7 +12,7 @@ # misc .DS_Store .env -npm-debug.log +npm-debug.log* yarn-debug.log* yarn-error.log*