From 29506ef250ca85dc0dc1fe0cd39f534d8ed5d83e Mon Sep 17 00:00:00 2001 From: Matt H Date: Wed, 14 Aug 2024 17:10:55 -0400 Subject: [PATCH] Revise Makefile to update base models after every composer update Occasionally Yii updates their template for Active Record model files. It seems more helpful to see the effects of those changes in that same PR (where Yii was updated), rather than seeing them in a later, unrelated PR. Updating the base models only takes around 10 seconds, so it seems like a minimal time cost (percentage-wise) that we're adding to each composer update call. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 787515a1..fbf4ef6e 100644 --- a/Makefile +++ b/Makefile @@ -22,6 +22,7 @@ composershow: composerupdate: docker compose run --rm cli composer update make composershow + make basemodels db: docker compose up -d db