diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-27T10·58+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-27T10·59+0000 |
commit | 0281eb58aa1cdd98c0dc499b6910738429f9250e (patch) | |
tree | dbb9454e860b827b2c64188364bfd43685d525d2 /website/goals/.gitignore | |
parent | 514136c99af6f1807f07d23640405764f1c674df (diff) |
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.
Diffstat (limited to 'website/goals/.gitignore')
-rw-r--r-- | website/goals/.gitignore | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/website/goals/.gitignore b/website/goals/.gitignore index fdf1c6188a4c..a86b565e2238 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 |