Update .gitignore to exclude build artifacts, tool states, and temp files.
- 빌드 결과물(lib)과 에이전트 작업 상태(.omc, .omx)를 제외하여 저장소의 청결도를 유지합니다. - 스크립트 실행 시 생성되는 임시 데이터 폴더(tmp)를 추가하여 불필요한 파일의 버전 관리를 방지했습니다. - 프로젝트 개발 환경에서 발생하는 에디터 및 OS 관련 부산물을 일괄 정리하여 관리 효율성을 높였습니다. - 로컬 전용 작업물인 짹 말투 검수 로그/하니스(chat-review) 폴더를 버전 관리에서 제외했습니다.
This commit is contained in:
parent
75a35d965a
commit
e9531edcb5
27
.gitignore
vendored
27
.gitignore
vendored
@ -1,10 +1,25 @@
|
||||
# Compiled JavaScript files
|
||||
lib/**/*.js
|
||||
lib/**/*.js.map
|
||||
# Dependencies
|
||||
node_modules/
|
||||
|
||||
# Build output (tsc outDir = lib)
|
||||
lib/
|
||||
|
||||
# TypeScript v1 declaration files
|
||||
typings/
|
||||
|
||||
# Node.js dependency directory
|
||||
node_modules/
|
||||
*.local
|
||||
# Editor / OS noise
|
||||
.DS_Store
|
||||
.idea/.name
|
||||
|
||||
# Tooling state (oh-my-claudecode 등 에이전트 작업 상태)
|
||||
.omc/
|
||||
.omx/
|
||||
|
||||
# Scratch / 스크립트 산출물 (scripts/chat-tools-sheet.ts 등)
|
||||
tmp/
|
||||
|
||||
# Local overrides / secrets
|
||||
*.local
|
||||
|
||||
# 짹 말투 검수 로그/하니스 (로컬 전용 작업물)
|
||||
chat-review/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user