(environment: Environment)
| 952 | } |
| 953 | |
| 954 | function getDepsCacheSuffix(environment: Environment): string { |
| 955 | return environment.name === 'client' ? '' : `_${environment.name}` |
| 956 | } |
| 957 | |
| 958 | export function getDepsCacheDir(environment: Environment): string { |
| 959 | return getDepsCacheDirPrefix(environment) + getDepsCacheSuffix(environment) |
no outgoing calls
no test coverage detected