Explorar el Código

Ref: Remove make-i18n from makefile (#2905)

மனோஜ்குமார் பழனிச்சாமி hace 1 año
padre
commit
ec2535c57c
Se han modificado 1 ficheros con 2 adiciones y 5 borrados
  1. 2 5
      Makefile

+ 2 - 5
Makefile

@@ -162,11 +162,8 @@ install-frontend-dependencies:
 	@echo "$(YELLOW)Setting up frontend environment...$(RESET)"
 	@echo "$(YELLOW)Detect Node.js version...$(RESET)"
 	@cd frontend && node ./scripts/detect-node-version.js
-	@cd frontend && \
-		echo "$(BLUE)Installing frontend dependencies with npm...$(RESET)" && \
-		npm install && \
-		echo "$(BLUE)Running make-i18n with npm...$(RESET)" && \
-		npm run make-i18n
+	echo "$(BLUE)Installing frontend dependencies with npm...$(RESET)"
+	@cd frontend && npm install
 	@echo "$(GREEN)Frontend dependencies installed successfully.$(RESET)"
 
 install-pre-commit-hooks: