()
| 14 | } |
| 15 | |
| 16 | export function getDistPath() { |
| 17 | return Path.join( |
| 18 | getDistRoot(), |
| 19 | `${getExecutableName()}-${process.platform}-${getDistArchitecture()}` |
| 20 | ) |
| 21 | } |
| 22 | |
| 23 | export function getExecutableName() { |
| 24 | const suffix = process.env.NODE_ENV === 'development' ? '-dev' : '' |
no test coverage detected