瀏覽代碼

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_
bubble
Javier Mendiara Cañardo 7 年之前
父節點
當前提交
2de7b957df
沒有發現已知的金鑰在資料庫的簽署中 GPG 金鑰 ID: C4CF4990702CE9F7
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      .gitignore

+ 1
- 1
.gitignore 查看文件

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

Loading…
取消
儲存