From 0281eb58aa1cdd98c0dc499b6910738429f9250e Mon Sep 17 00:00:00 2001 From: William Carroll Date: Fri, 27 Mar 2020 10:58:08 +0000 Subject: [PATCH] Add node_modules to .gitignore of boilerplate/typescript briefcase's top-level .gitignore ignores node_modules, so I never noticed that it was missing from my boilerplate .gitignore. I don't *really* need to add it to that .gitignore, but if I want to cleanly eject directories from this monorepo, it makes sense to keep the .gitignore files local to each project. --- boilerplate/typescript/.gitignore | 5 +++-- website/goals/.gitignore | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/boilerplate/typescript/.gitignore b/boilerplate/typescript/.gitignore index fdf1c6188..ebea22e07 100644 --- a/boilerplate/typescript/.gitignore +++ b/boilerplate/typescript/.gitignore @@ -1,2 +1,3 @@ -.cache -dist \ No newline at end of file +/.cache +/dist +/node_modules \ No newline at end of file diff --git a/website/goals/.gitignore b/website/goals/.gitignore index fdf1c6188..a86b565e2 100644 --- a/website/goals/.gitignore +++ b/website/goals/.gitignore @@ -1,2 +1,3 @@ -.cache -dist \ No newline at end of file +/.cache +/dist/**/* +/node_modules \ No newline at end of file