@veecode-platform/safira-cli
Version:
Generate a microservice project from your spec.
15 lines (14 loc) • 529 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PreInstall = void 0;
const command_check_1 = require("../command/command-check");
class PreInstall {
checkCommand() {
new command_check_1.CommandCheck().check([
{ command: "git", errorMessage: "git is not installed" },
{ command: "docker", errorMessage: "docker is not installed" },
{ command: "curl", errorMessage: "curl is not installed" },
]);
}
}
exports.PreInstall = PreInstall;