From 16df93679e41162b45224ad121fb96c4ea092b93 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Fri, 7 Mar 2025 14:10:18 +0100 Subject: [PATCH] composer.json: Run AssetLoader on `post-install-cmd` `post-update-cmd` only runs in case of install if there is no lock file present. --- composer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composer.json b/composer.json index cc660fb..bd1befe 100644 --- a/composer.json +++ b/composer.json @@ -63,6 +63,9 @@ "psr-0": { "AssetLoader": "" } }, "scripts": { + "post-install-cmd": [ + "AssetLoader::update" + ], "post-update-cmd": [ "AssetLoader::update" ]