()
| 69 | * Returns the list of plugin names that have pending updates. |
| 70 | */ |
| 71 | export function getAutoUpdatedPluginNames(): string[] { |
| 72 | if (!hasPendingUpdates()) { |
| 73 | return [] |
| 74 | } |
| 75 | return getPendingUpdatesDetails().map( |
| 76 | d => parsePluginIdentifier(d.pluginId).name, |
| 77 | ) |
| 78 | } |
| 79 | |
| 80 | /** |
| 81 | * Get the set of marketplaces that have autoUpdate enabled. |
nothing calls this directly
no test coverage detected