Files
oh-my-claudecode/.gitattributes
Yeachan-Heo 2b4490fc85 chore: include dist/ in git for seamless plugin installs
- Remove dist/ from .gitignore so compiled output ships with the repo
- Add linguist-generated attributes to hide dist/ from GitHub diffs
- Simplify update guide in all READMEs (no rebuild step needed)

Users no longer need to run npm install or rebuild after plugin
install/update — the compiled code is now included directly.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-05 23:50:26 +00:00

31 lines
670 B
Plaintext

# Default to auto (Git decides based on content)
* text=auto eol=lf
# Force LF for scripts and source files
*.sh text eol=lf
*.bash text eol=lf
*.mjs text eol=lf
*.js text eol=lf
*.ts text eol=lf
*.json text eol=lf
*.md text eol=lf
*.yml text eol=lf
*.yaml text eol=lf
# Force CRLF for Windows-specific files (if any exist)
*.bat text eol=crlf
*.cmd text eol=crlf
*.ps1 text eol=crlf
# Build output (hide from diffs, treat as generated)
dist/** linguist-generated=true
dist/**/*.js linguist-generated=true
dist/**/*.cjs linguist-generated=true
dist/**/*.d.ts linguist-generated=true
# Binary files (no conversion)
*.png binary
*.jpg binary
*.gif binary
*.ico binary