Created by: jayphelps
hehe I spent far too long trying to figure out why my build would only work on my computer but not in CI, it was because we had a directory in src literally named build
that silently not being included in source control (and some red herring errors mislead me into not realizing why). The current generated gitignore excludes all directories named build | coverage | node_modules
, even ones that aren't in the root.
This changes it to only exclude those which I imagine was intended, only those in the root.