(settings: ChopsSettings)
| 109 | private _enrichGeneration = 0; |
| 110 | |
| 111 | refresh(settings: ChopsSettings): void { |
| 112 | this._projectsHomeDir = settings.projectsHomeDir; |
| 113 | this.items = scanAll(settings); |
| 114 | if (isSkillkitAvailable()) { |
| 115 | this.applyEnrichmentFromCache(); |
| 116 | } |
| 117 | this.trigger("updated"); |
| 118 | } |
| 119 | |
| 120 | revalidate(): void { |
| 121 | if (!isSkillkitAvailable()) return; |
no test coverage detected