Skip to content

Commit

Permalink
(env/refactor): standardize .gitignore
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
agilgur5 committed Feb 10, 2022
1 parent f6e60d0 commit 06347a3
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
### custom ###

# build output
build/
# test coverage output
coverage/

### Node ###

# Logs
logs
*.log
npm-debug.log*

# Dependency directories
node_modules/

# Optional npm cache directory
.npm

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

.DS_Store
*~
# dotenv environment variables file
.env

0 comments on commit 06347a3

Please sign in to comment.