* Post-process mods, run after processMods, but before returning to caller
()
| 708 | * Post-process mods, run after processMods, but before returning to caller |
| 709 | */ |
| 710 | processModsPost() { |
| 711 | this.#modCache.saveFile() |
| 712 | this.#doAlphaSort() |
| 713 | this.#processBindConflicts() |
| 714 | this.#doRequired() |
| 715 | this.#doBadges() |
| 716 | } |
| 717 | |
| 718 | /** @type {Promise} */ |
| 719 | get processPromise() { return Promise.all(this.#scanPromise) } |
no test coverage detected