Mercurial
comparison .hgignore @ 27:b212647e8654
[Bun] Adding OS specific files that I used for testing as to be ignored.
| author | June Park <parkjune1995@gmail.com> |
|---|---|
| date | Thu, 09 Oct 2025 06:45:50 -0700 |
| parents | fa2b8af609d9 |
| children | de3b9d1dca51 |
comparison
equal
deleted
inserted
replaced
| 26:a58a663dae68 | 27:b212647e8654 |
|---|---|
| 1 syntax: glob | 1 syntax: glob |
| 2 | 2 |
| 3 # 1) Bazel’s output base directories (e.g. bazel-<workspace-hash>/) | 3 # Bazel specifics |
| 4 bazel-*/ | 4 bazel-*/ |
| 5 *.runfiles/ | 5 *.runfiles/ |
| 6 *.runfiles_manifest | 6 *.runfiles_manifest |
| 7 bazel-*/testlogs/ | 7 bazel-*/testlogs/ |
| 8 bazel-*/external/ | 8 bazel-*/external/ |
| 9 .bazelcache/ | 9 .bazelcache/ |
| 10 | 10 |
| 11 # Folder for unpacking standalone bazel target. | |
| 11 projects/* | 12 projects/* |
| 12 | 13 |
| 14 # Git backup on private github... probably remove and just upload to my s3 bucket directly or something. | |
| 13 .git/* | 15 .git/* |
| 14 .gitignore | 16 .gitignore |
| 17 | |
| 18 # Bun specific this is os dependent so should be ignored. | |
| 19 .third_party/bun/bun | |
| 20 .third_party/bun/node_modules |