That should've been install, not update.
This commit is contained in:
parent
e8dcd5b878
commit
c7dc5de306
2 changed files with 13 additions and 5 deletions
16
Makefile
16
Makefile
|
@ -10,14 +10,22 @@ ENV_FILE := .env
|
||||||
TOOLS_DIR := tools
|
TOOLS_DIR := tools
|
||||||
VENDOR_DIR := vendor
|
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
|
${PHP_EXE} ${COMPOSER_EXE} update
|
||||||
|
|
||||||
npm:
|
npm_update:
|
||||||
${NPM_EXE} update --save
|
${NPM_EXE} update --save
|
||||||
|
|
||||||
migrate:
|
migrate:
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
20250411
|
20250411.1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue