composer.json: Run AssetLoader on post-install-cmd

`post-update-cmd` only runs in case of install if
there is no lock file present.
This commit is contained in:
Johannes Meyer 2025-03-07 14:10:18 +01:00
parent 6ba9c56b2c
commit 16df93679e

View File

@ -63,6 +63,9 @@
"psr-0": { "AssetLoader": "" }
},
"scripts": {
"post-install-cmd": [
"AssetLoader::update"
],
"post-update-cmd": [
"AssetLoader::update"
]