getVersionCommand function
Implementation
Future<String> getVersionCommand(
ExecuteCommandFunction executeShellCommand) async {
final output = await executeShellCommand(ExecuteCommandInput(
command: "npx",
args: ["@usermn/sdc", "--version"],
));
return cleanVersion(output.stdout) ?? '';
}