(command: string)
| 47 | }; |
| 48 | |
| 49 | export const execAsync = async (command: string): Promise<string> => { |
| 50 | return promisify(exec)(command).then(({ stdout }) => stdout); |
| 51 | }; |
| 52 | |
| 53 | export const cargoProjectVersion = (projectName: string): string => { |
| 54 | return execSync( |
no outgoing calls
no test coverage detected