()
| 968 | } |
| 969 | |
| 970 | function getTempSuffix() { |
| 971 | return ( |
| 972 | '_temp_' + |
| 973 | getHash( |
| 974 | `${process.pid}:${Date.now().toString()}:${Math.random() |
| 975 | .toString(16) |
| 976 | .slice(2)}`, |
| 977 | ) |
| 978 | ) |
| 979 | } |
| 980 | |
| 981 | function getDepsCacheDirPrefix(environment: Environment): string { |
| 982 | return normalizePath(path.resolve(environment.config.cacheDir, 'deps')) |
no test coverage detected