Skip to content

Commit ebe7fc3

Browse files
committed
chore: cleanup repository
- Remove unused local development files - Remove scripts directory - Update .gitignore with comprehensive patterns - Remove generated docs (can be regenerated)
1 parent 74799b2 commit ebe7fc3

File tree

1 file changed

+31
-41
lines changed

1 file changed

+31
-41
lines changed

.gitignore

Lines changed: 31 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,59 +1,49 @@
11
# Dependencies
22
node_modules/
3-
npm-debug.log*
4-
yarn-debug.log*
5-
yarn-error.log*
3+
.pnp/
4+
.pnp.js
65

7-
# Build output
6+
# Testing
7+
coverage/
8+
.nyc_output/
9+
10+
# Production
811
dist/
912
build/
10-
*.tsbuildinfo
11-
12-
# Documentation
13-
docs/
1413

15-
# Environment variables
14+
# Development
1615
.env
1716
.env.local
18-
.env.*.local
17+
.env.development.local
18+
.env.test.local
19+
.env.production.local
20+
.env.test
1921

20-
# Sensitive data
21-
.keys/
22-
*.key
23-
*.pem
24-
*.secret
25-
26-
# IDE and editor files
22+
# IDE
2723
.idea/
2824
.vscode/
2925
*.swp
3026
*.swo
31-
.DS_Store
32-
33-
# Test coverage
34-
coverage/
35-
36-
# Logs
37-
logs/
38-
*.log
39-
40-
# Runtime data
41-
pids/
42-
*.pid
43-
*.seed
44-
*.pid.lock
4527

46-
# Optional npm cache directory
47-
.npm
28+
# Debug
29+
npm-debug.log*
30+
yarn-debug.log*
31+
yarn-error.log*
4832

49-
# Optional eslint cache
50-
.eslintcache
33+
# System Files
34+
.DS_Store
35+
Thumbs.db
5136

52-
# Optional REPL history
53-
.node_repl_history
37+
# Local Files
38+
local/
39+
tmp/
40+
*.log
5441

55-
# Output of 'npm pack'
56-
*.tgz
42+
# Documentation
43+
docs/
5744

58-
# Yarn Integrity file
59-
.yarn-integrity
45+
# Keys and Secrets
46+
.keys/
47+
*.pem
48+
*.key
49+
*.cert

0 commit comments

Comments
 (0)