소스 검색

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
No known key found for this signature in database 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

불러오는 중...
취소
저장