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