Skip to content

Commit a2e8668

Browse files
SOIVclaude
andcommitted
chore: .gitignore 보강 및 pnpm-lock.yaml packages/controls 반영
- .gitignore 섹션 전면 정리 (빈 섹션 채움) - TypeScript: *.tsbuildinfo 추가 - Vite: .vite/ 캐시, timestamp 파일 추가 - Logs: npm/yarn/pnpm/lerna debug 로그 추가 - Cache: .cache/ .turbo/ .eslintcache 등 추가 - OS: Thumbs.db, Desktop.ini 추가 - IDE: .vscode/ (공유 설정 예외 포함), .idea/, Vim/Emacs 임시파일 추가 - Temp: *.tmp *.bak *.orig 등 추가 - Local: .sisyphus/ 추가 - pnpm-lock.yaml: packages/ui → packages/controls 이름 변경 반영 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent ad93f07 commit a2e8668

2 files changed

Lines changed: 115 additions & 15 deletions

File tree

.gitignore

Lines changed: 109 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,134 @@
1+
# =============================================================================
12
# Dependencies
3+
# =============================================================================
24
node_modules/
35
**/node_modules/
6+
.pnp
7+
.pnp.js
48

9+
# =============================================================================
510
# Environment variables
11+
# =============================================================================
12+
.env
13+
.env.*
614
**/.env
715
**/.env.*
816
!**/.env*.example
17+
!**/.env.example
918

19+
# =============================================================================
1020
# Build outputs
21+
# =============================================================================
1122
dist/
1223
**/dist/
24+
build/
25+
**/build/
26+
out/
27+
**/out/
1328

1429
apps/api/public/
1530

31+
# =============================================================================
32+
# TypeScript
33+
# =============================================================================
34+
*.tsbuildinfo
35+
**/*.tsbuildinfo
36+
37+
# =============================================================================
38+
# Vite
39+
# =============================================================================
40+
.vite/
41+
**/.vite/
42+
vite.config.ts.timestamp-*
43+
vite.config.js.timestamp-*
44+
45+
# =============================================================================
46+
# Testing
47+
# =============================================================================
48+
coverage/
49+
**/coverage/
50+
.nyc_output/
51+
**/.nyc_output/
52+
53+
# =============================================================================
1654
# Logs
17-
.DS_Store
55+
# =============================================================================
1856
*.log
57+
**/*.log
58+
logs/
59+
**/logs/
60+
npm-debug.log*
61+
yarn-debug.log*
62+
yarn-error.log*
63+
pnpm-debug.log*
64+
lerna-debug.log*
1965

20-
# IDE
66+
# =============================================================================
67+
# Cache
68+
# =============================================================================
69+
.cache/
70+
**/.cache/
71+
.turbo/
72+
**/.turbo/
73+
.eslintcache
74+
.stylelintcache
75+
.parcel-cache/
2176

77+
# =============================================================================
2278
# OS
79+
# =============================================================================
80+
.DS_Store
81+
**/.DS_Store
82+
Thumbs.db
83+
**/Thumbs.db
84+
Desktop.ini
85+
ehthumbs.db
2386

24-
# TypeScript
87+
# =============================================================================
88+
# IDE / Editor
89+
# =============================================================================
90+
# VS Code (로컬 전용 설정만 제외, 공유 설정은 추적 가능)
91+
.vscode/*
92+
!.vscode/settings.json
93+
!.vscode/extensions.json
94+
!.vscode/launch.json
95+
!.vscode/tasks.json
2596

26-
# Testing
27-
coverage/
28-
**/coverage/
97+
# JetBrains (IntelliJ, WebStorm 등)
98+
.idea/
99+
*.iml
100+
*.iws
101+
*.ipr
102+
103+
# Vim / Neovim
104+
*.swp
105+
*.swo
106+
*~
107+
.netrwhist
108+
109+
# Emacs
110+
\#*\#
111+
.\#*
112+
113+
# =============================================================================
114+
# Temp / Misc
115+
# =============================================================================
116+
*.tmp
117+
*.temp
118+
*.bak
119+
*.orig
120+
*.rej
29121

30-
# Misc
122+
# =============================================================================
123+
# Package archives
124+
# =============================================================================
125+
*.tgz
126+
*.tar.gz
31127

32-
# ETC
33-
local
128+
# =============================================================================
129+
# Local / Personal (추적 제외 로컬 전용 경로)
130+
# =============================================================================
131+
local/
132+
**/local/
34133
.claude/
134+
.sisyphus/

pnpm-lock.yaml

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)