mirror of
https://fastgit.cc/github.com/Yeachan-Heo/oh-my-claudecode
synced 2026-04-20 12:51:30 +08:00
- 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>
31 lines
670 B
Plaintext
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
|