gitignore all npm-debug logs

Lot of npm-debugs files can be generated in devs computers, each one with a number suffix
ex:
```sh
npm-debug.log.213131231
npm-debug.log.213131231
npm-debug.log.213131231
```

Adding a wildcard prevents for accidental commits

_Official and default .gitignore for node in github.com: https://github.com/github/gitignore/blob/master/Node.gitignore#L4_
This commit is contained in:
Javier Mendiara Cañardo
2017-05-09 15:14:14 +02:00
parent a068f78252
commit 2de7b957df

2
.gitignore vendored
View File

@@ -2,5 +2,5 @@ node_modules
.idea .idea
.deps_check .deps_check
.DS_Store .DS_Store
npm-debug.log npm-debug.log*
.eslintcache .eslintcache