0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-08 02:52:39 -05:00

Included all apps in asset-delivery output

- this should loop over all apps without us having to manually add them
  to the debug lines
This commit is contained in:
Daniel Lockyer 2023-11-20 16:43:42 +01:00 committed by Daniel Lockyer
parent 641e0cbbdd
commit 2ac8f39e77

View file

@ -40,8 +40,9 @@ module.exports = {
}
if (this.env === 'production') {
console.log('Admin-X Settings:', this.packageConfig['adminXSettingsFilename'], this.packageConfig['adminXSettingsHash']);
console.log('Koenig-Lexical:', this.packageConfig['editorFilename'], this.packageConfig['editorHash']);
for (const [key, value] of Object.entries(this.packageConfig)) {
console.log(`Asset-Delivery: ${key} = ${value}`);
}
}
return this.packageConfig;