mirror of
https://github.com/amark/gun.git
synced 2025-11-23 22:15:55 +00:00
Running the unbuild step wipes out the src/.gitignore file. Instead, now the root .gitignore file is told to ignore src/. Prevents a scenario where you run unbuild, it wipes out the .gitignore file, and `git status` shows all the new src files as untracked. A developer could accidentally commit them without realizing it.
14 lines
128 B
Plaintext
14 lines
128 B
Plaintext
node_modules/*
|
|
npm-debug.log
|
|
gun.min.js
|
|
yarn.lock
|
|
*data.json
|
|
*.db
|
|
.idea/
|
|
*.bak
|
|
*.new
|
|
*.DS_store
|
|
|
|
# Unbuilt files.
|
|
src/
|