( pluginName: string, marketplaceName: string, )
| 58 | * Create a plugin ID from plugin name and marketplace name |
| 59 | */ |
| 60 | export function createPluginId( |
| 61 | pluginName: string, |
| 62 | marketplaceName: string, |
| 63 | ): string { |
| 64 | return `${pluginName}@${marketplaceName}` |
| 65 | } |
| 66 | |
| 67 | /** |
| 68 | * Load marketplaces with graceful degradation for individual failures. |
no outgoing calls
no test coverage detected