From 32d00c4a701334aecc59e8a6ae221a2fedff4991 Mon Sep 17 00:00:00 2001 From: Zac Anger Date: Tue, 8 Mar 2016 17:51:30 -0700 Subject: [PATCH 1/2] Updating `.gitignore` to just say `public` Previously had many files/subdirectories broken out in the `.gitignore`; seems the idea is just to ignore the entire directory, which can be done with just the one line. Does not address any open issue; just addresses potential confusion over what should/shouldn't be ignored in `public`. --- .gitignore | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index f9d11769c..32d4d0c2f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,22 +1,10 @@ node_modules/ .DS_Store -public/index.html -public/styleguide.html -public/styleguide/html/styleguide.html -public/css/* -public/data/* -public/fonts/* -public/js/* -public/images/* -public/patterns/* latest-change.txt patternlab.json .sass-cache/* /sass-cache source/images/Thumbs.db -public/styleguide/css/static.css.map -public/styleguide/css/styleguide-specific.css.map -public/styleguide/css/styleguide.css.map source/css/style.css.map .idea/ -public/styleguide/ +public From 5ad83444bb2e120ea62b3696bc3e840291c2736b Mon Sep 17 00:00:00 2001 From: Zac Anger Date: Tue, 8 Mar 2016 17:53:26 -0700 Subject: [PATCH 2/2] Updating gitignore for Thumbs.db Not specifying any directory means it'll catch all `Thumbs.db` files in any directory. --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 32d4d0c2f..74ab03195 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,7 @@ latest-change.txt patternlab.json .sass-cache/* /sass-cache -source/images/Thumbs.db +Thumbs.db source/css/style.css.map .idea/ public