()
| 24 | static hidden = false |
| 25 | |
| 26 | async run(): Promise<void> { |
| 27 | try { |
| 28 | const { |
| 29 | manager, |
| 30 | noSave = false, |
| 31 | plugins: pluginsRemoved = [], |
| 32 | } = await this.remove(PluginType.Provider) |
| 33 | |
| 34 | for (const key of pluginsRemoved) { |
| 35 | if (manager && !noSave) { |
| 36 | manager.removeFromLockFile(key) |
| 37 | } |
| 38 | } |
| 39 | } catch (error) { |
| 40 | this.logger.stopSpinner() |
| 41 | } |
| 42 | } |
| 43 | } |
nothing calls this directly
no test coverage detected