diff --git a/Makefile b/Makefile
index 19f21980..6fec01e9 100644
--- a/Makefile
+++ b/Makefile
@@ -10,14 +10,22 @@ ENV_FILE := .env
 TOOLS_DIR := tools
 VENDOR_DIR := vendor
 
-all: update migrate clear-cache build cron
+all: install migrate clear-cache build cron
 
-update: composer npm
+install: composer_install npm_install
 
-composer:
+composer_install:
+	${PHP_EXE} ${COMPOSER_EXE} install
+
+npm_install:
+	${NPM_EXE} ci
+
+update: composer_update npm_update
+
+composer_update:
 	${PHP_EXE} ${COMPOSER_EXE} update
 
-npm:
+npm_update:
 	${NPM_EXE} update --save
 
 migrate:
diff --git a/VERSION b/VERSION
index 534b600c..fc34e249 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-20250411
+20250411.1