( pluginId: string, version: string, )
| 171 | * @returns Absolute path to versioned plugin directory |
| 172 | */ |
| 173 | export function getVersionedCachePath( |
| 174 | pluginId: string, |
| 175 | version: string, |
| 176 | ): string { |
| 177 | return getVersionedCachePathIn(getPluginsDirectory(), pluginId, version) |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * Get versioned ZIP cache path for a plugin. |
no test coverage detected