Clean up .gitignore a bit
This commit is contained in:
parent
6700be5515
commit
f60718e8fd
|
@ -1,5 +1,3 @@
|
||||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
||||||
|
|
||||||
# dependencies
|
# dependencies
|
||||||
/node_modules
|
/node_modules
|
||||||
/.pnp
|
/.pnp
|
||||||
|
@ -8,17 +6,6 @@
|
||||||
# testing
|
# testing
|
||||||
/coverage
|
/coverage
|
||||||
|
|
||||||
# next.js
|
|
||||||
/.next/
|
|
||||||
/out/
|
|
||||||
|
|
||||||
# production
|
|
||||||
/build
|
|
||||||
|
|
||||||
# misc
|
|
||||||
.DS_Store
|
|
||||||
*.pem
|
|
||||||
|
|
||||||
# debug
|
# debug
|
||||||
npm-debug.log*
|
npm-debug.log*
|
||||||
yarn-debug.log*
|
yarn-debug.log*
|
||||||
|
@ -30,16 +17,15 @@ yarn-error.log*
|
||||||
.env.test.local
|
.env.test.local
|
||||||
.env.production.local
|
.env.production.local
|
||||||
|
|
||||||
# vercel
|
# build outputs
|
||||||
.vercel
|
package-lock.json
|
||||||
|
dist/
|
||||||
|
target/
|
||||||
|
|
||||||
|
# common artifact extensions
|
||||||
**/*.trace
|
**/*.trace
|
||||||
**/*.zip
|
**/*.zip
|
||||||
**/*.tar.gz
|
**/*.tar.gz
|
||||||
**/*.tgz
|
**/*.tgz
|
||||||
**/*.log
|
**/*.log
|
||||||
package-lock.json
|
|
||||||
**/*.bun
|
**/*.bun
|
||||||
|
|
||||||
dist/
|
|
||||||
target/
|
|
||||||
|
|
Loading…
Reference in New Issue