You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary: Skips .git, dist, and node_modules during recursive glob expansion while preserving explicit-file access, with focused regression coverage and aligned README documentation (3 files, +36/-3).
Checks run: GitHub CI Repository hygiene (Node 20), Repository hygiene (Node 22), and Repository hygiene (Node 24) completed SUCCESS; contributor verification recorded npm ci --ignore-scripts --no-audit --no-fund, targeted recursive-glob tests, npm run release:check (31 tests, typecheck, build, smoke, package smoke), bash scripts/validate.sh, and git diff --check origin/main...HEAD. Full diff, mergeability, one-review branch protection, and exact Roger Chappel author/committer identities were re-verified immediately before merge.
Rebased/CI-repaired: No.
Verified head SHA: 05a56e42952b78d1c88b916712dcf72095fa127c.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
.git,dist, andnode_modulesdirectories while recursively expandingcheckglobs.Verification
npm ci --ignore-scripts --no-audit --no-fund; targeted recursive-glob tests;npm run release:check;bash scripts/validate.sh;git diff --check origin/main...HEADRisk Level
Notes: Glob inputs no longer discover files beneath dependency, VCS, or generated directories. Explicit file paths remain unchanged.
Rollback Plan
05a56e4,9da2472, and56f05e6in that order.Human Decision Needed
Commit-by-commit changes
56f05e6 test: cover recursive glob directory exclusions— reproduces broad**/*.mdtraversal and verifies exclusions, deterministic ordering, and explicit-file behavior.9da2472 fix: skip generated trees during glob expansion— prunes the three excluded directory names during recursive traversal.05a56e4 docs: describe recursive glob exclusions— records the user-visible glob contract.