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.
This commit is contained in:
William Carroll 2020-03-27 10:58:08 +00:00
parent 514136c99a
commit 0281eb58aa
2 changed files with 6 additions and 4 deletions

View file

@ -1,2 +1,3 @@
.cache
dist
/.cache
/dist
/node_modules

View file

@ -1,2 +1,3 @@
.cache
dist
/.cache
/dist/**/*
/node_modules