search command is working on a local scope#4
Merged
Merged
Conversation
davidfirst
added a commit
that referenced
this pull request
Apr 27, 2020
* public-api links are created only for components in components directory * extract bind() to a seperate public function * create dependencies links only for components that have references in bit.json * never delete the entire node_module/bit dir * create public-api links for inline components
davidfirst
added a commit
that referenced
this pull request
Oct 8, 2025
3 tasks
davidfirst
added a commit
that referenced
this pull request
May 13, 2026
Audit 06 enumerates every explicit cache-invalidation call site, classifies each by what it currently invalidates vs. what it needs to invalidate, and identifies three patterns of over-invalidation: - Pattern A (#10, #11): callers already have the affected ID list in scope, but call clearAllComponentsCache anyway. Mechanical swap to clearComponentsCache(ids). Tasks 8.11. - Pattern B (#12, #4-6, #13): callers know the seed IDs but not the full affected set (e.g. auto-tag dependents, env consumers). Each needs a small reverse-index. Tasks 8.12, 8.14. - Pattern C (#3, #8, #9): callers genuinely don't know the affected set. Each handled case-by-case: dead-code check, file-read narrowing, or accept worst-case nuke. Tasks 8.13, 8.15. Audit also documents 5 "OK, don't regress" per-id sites and 3 FS-cache sites, plus the two indirect cascade triggers (bitmap invalidate, configStore invalidate) which are already minimal. 15 full-clear sites total, 7 of them are over-clears. The largest expected wins are from narrowing snapping's pre-tag/snap clear (8.12) and the install-time clears (8.14, deferred until Lever 1 ships and we measure). No code changes — audit + task planning only.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
No description provided.