@iconsulting-dev/forgekit 1.4.1 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -29,13 +29,13 @@ class ClaudeCodeGenerator extends BaseGenerator {
|
|
|
29
29
|
buildAllowedCommands() {
|
|
30
30
|
const commands = [];
|
|
31
31
|
if (this.config.backend) {
|
|
32
|
-
commands.push("
|
|
32
|
+
commands.push("Bash(./mvnw spring-boot:run)", "Bash(./mvnw test)", "Bash(./mvnw package)", "Bash(./mvnw clean)");
|
|
33
33
|
}
|
|
34
34
|
if (this.config.frontend) {
|
|
35
|
-
commands.push("
|
|
35
|
+
commands.push("Bash(ng serve)", "Bash(ng build)", "Bash(ng test)", "Bash(ng generate)", "Bash(npm install)", "Bash(npm run)");
|
|
36
36
|
}
|
|
37
37
|
if (this.config.docker) {
|
|
38
|
-
commands.push("
|
|
38
|
+
commands.push("Bash(docker compose up)", "Bash(docker compose down)", "Bash(docker compose ps)");
|
|
39
39
|
}
|
|
40
40
|
return commands;
|
|
41
41
|
}
|