Skip to content

Commit 06347a3

Browse files
committed
(env/refactor): standardize .gitignore
- basically the same one I use in all my other libraries - I believe it's an old version of Node output from gitignore.io iirc - it has comments unlike the old one, so that's much nicer for those who aren't totally sure what each entry is for
1 parent f6e60d0 commit 06347a3

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

.gitignore

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,28 @@
1+
### custom ###
2+
3+
# build output
14
build/
5+
# test coverage output
26
coverage/
37

8+
### Node ###
9+
10+
# Logs
11+
logs
12+
*.log
413
npm-debug.log*
14+
15+
# Dependency directories
516
node_modules/
617

18+
# Optional npm cache directory
19+
.npm
20+
21+
# Optional REPL history
22+
.node_repl_history
23+
24+
# Output of 'npm pack'
725
*.tgz
826

9-
.DS_Store
10-
*~
27+
# dotenv environment variables file
28+
.env

0 commit comments

Comments
 (0)