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:
parent
514136c99a
commit
0281eb58aa
2 changed files with 6 additions and 4 deletions
5
boilerplate/typescript/.gitignore
vendored
5
boilerplate/typescript/.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
.cache
|
||||
dist
|
||||
/.cache
|
||||
/dist
|
||||
/node_modules
|
5
website/goals/.gitignore
vendored
5
website/goals/.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
.cache
|
||||
dist
|
||||
/.cache
|
||||
/dist/**/*
|
||||
/node_modules
|
Loading…
Reference in a new issue