Skip to content

Commit b98a041

Browse files
committed
chore: consolidate and update .gitignore files across the project, removing obsolete entries and adding new patterns for improved dependency and build management
1 parent ac8bf04 commit b98a041

File tree

8 files changed

+59
-309
lines changed

8 files changed

+59
-309
lines changed

.gitignore

Lines changed: 59 additions & 99 deletions
Original file line numberDiff line numberDiff line change
@@ -1,130 +1,90 @@
1-
# Data files
2-
server/public/data/
1+
# Dependencies
2+
node_modules/
3+
jspm_packages/
4+
bower_components/
5+
web_modules/
6+
.pnp.*
7+
.yarn/cache
8+
.yarn/unplugged
9+
.yarn/build-state.yml
10+
.yarn/install-state.gz
11+
12+
# Build outputs
13+
build/
14+
dist/
15+
out/
16+
.next/
17+
.nuxt/
18+
.vuepress/dist/
19+
*.tgz
20+
21+
# Coverage and testing
22+
coverage/
23+
*.lcov
24+
.nyc_output/
325

426
# Logs
5-
logs
27+
logs/
628
*.log
729
npm-debug.log*
830
yarn-debug.log*
931
yarn-error.log*
1032
lerna-debug.log*
1133
.pnpm-debug.log*
12-
13-
# Diagnostic reports (https://nodejs.org/api/report.html)
1434
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
1535

1636
# Runtime data
17-
pids
37+
pids/
1838
*.pid
1939
*.seed
2040
*.pid.lock
2141

22-
# Directory for instrumented libs generated by jscoverage/JSCover
23-
lib-cov
24-
25-
# Coverage directory used by tools like istanbul
26-
coverage
27-
*.lcov
28-
29-
# nyc test coverage
30-
.nyc_output
31-
32-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
33-
.grunt
34-
35-
# Bower dependency directory (https://bower.io/)
36-
bower_components
37-
38-
# node-waf configuration
39-
.lock-wscript
40-
41-
# Compiled binary addons (https://nodejs.org/api/addons.html)
42-
build/Release
43-
44-
# Dependency directories
45-
node_modules/
46-
jspm_packages/
47-
48-
# Snowpack dependency directory (https://snowpack.dev/)
49-
web_modules/
50-
51-
# TypeScript cache
52-
*.tsbuildinfo
53-
54-
# Optional npm cache directory
55-
.npm
42+
# Environment variables
43+
.env
44+
.env.development.local
45+
.env.test.local
46+
.env.production.local
47+
.env.local
48+
.env.development
49+
.env.production
5650

57-
# Optional eslint cache
51+
# Caches
52+
.cache/
53+
.parcel-cache/
5854
.eslintcache
59-
60-
# Optional stylelint cache
6155
.stylelintcache
62-
63-
# Microbundle cache
6456
.rpt2_cache/
6557
.rts2_cache_cjs/
6658
.rts2_cache_es/
6759
.rts2_cache_umd/
68-
69-
# Optional REPL history
60+
*.tsbuildinfo
61+
.npm/
7062
.node_repl_history
7163

72-
# Output of 'npm pack'
73-
*.tgz
74-
75-
# Yarn Integrity file
76-
.yarn-integrity
77-
78-
# dotenv environment variable files
79-
.env
80-
.env.development.local
81-
.env.test.local
82-
.env.production.local
83-
.env.local
84-
85-
# parcel-bundler cache (https://parceljs.org/)
86-
.cache
87-
.parcel-cache
88-
89-
# Next.js build output
90-
.next
91-
out
64+
# IDE and editor files
65+
.idea/
66+
.vscode-test/
67+
.DS_Store
68+
*.pem
9269

93-
# Nuxt.js build / generate output
94-
.nuxt
95-
dist
96-
97-
# Gatsby files
98-
.cache/
99-
# Comment in the public line in if your project uses Gatsby and not Next.js
100-
# https://nextjs.org/blog/next-9-1#public-directory-support
101-
# public
102-
103-
# vuepress build output
104-
.vuepress/dist
105-
106-
# vuepress v2.x temp and cache directory
107-
.temp
108-
.cache
109-
110-
# Serverless directories
70+
# Framework specific
11171
.serverless/
112-
113-
# FuseBox cache
11472
.fusebox/
115-
116-
# DynamoDB Local files
11773
.dynamodb/
118-
119-
# TernJS port file
12074
.tern-port
75+
.vercel/
12176

122-
# Stores VSCode versions used for testing VSCode extensions
123-
.vscode-test
77+
# TypeScript
78+
next-env.d.ts
12479

125-
# yarn v2
126-
.yarn/cache
127-
.yarn/unplugged
128-
.yarn/build-state.yml
129-
.yarn/install-state.gz
130-
.pnp.*
80+
# Data files
81+
server/public/data/
82+
83+
# Other
84+
lib-cov/
85+
.grunt/
86+
.lock-wscript
87+
build/Release/
88+
.temp/
89+
*.swp
90+
*.swo

apps/backend/.gitignore

Lines changed: 0 additions & 5 deletions
This file was deleted.

apps/frontend/.gitignore

Lines changed: 0 additions & 35 deletions
This file was deleted.

packages/configs/.gitignore

Lines changed: 0 additions & 34 deletions
This file was deleted.

packages/database/.gitignore

Lines changed: 0 additions & 34 deletions
This file was deleted.

packages/song/.gitignore

Lines changed: 0 additions & 34 deletions
This file was deleted.

packages/sounds/.gitignore

Lines changed: 0 additions & 34 deletions
This file was deleted.

0 commit comments

Comments
 (0)