From c8e7b4ca4bdf42e501ebec542542bd2865f6f31e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Profile=20=E6=9C=9D?= Date: Thu, 9 Jul 2026 18:20:04 +0300 Subject: [PATCH] chore(dev): allow Application/Static/audio in module-structure Permit the audio static-asset directory so the music package passes module-structure validation. Co-Authored-By: Claude Opus 4.8 --- config/module-structure.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/module-structure.php b/config/module-structure.php index 713e404..55f9b45 100644 --- a/config/module-structure.php +++ b/config/module-structure.php @@ -266,13 +266,14 @@ // Static + View — assets and templates. $rule( path: 'Application/Static', - allowedDirectories: ['css', 'js', 'img', 'fonts', 'svg'], + allowedDirectories: ['css', 'js', 'img', 'fonts', 'svg', 'audio'], allowedFiles: ['assets.json'], ), $rule(path: 'Application/Static/css', allowFeatureGrouping: true, allowAnyFile: true), $rule(path: 'Application/Static/js', allowFeatureGrouping: true, allowAnyFile: true), $rule(path: 'Application/Static/img', allowFeatureGrouping: true, allowAnyFile: true), $rule(path: 'Application/Static/fonts', allowFeatureGrouping: true, allowAnyFile: true), + $rule(path: 'Application/Static/audio', allowFeatureGrouping: true, allowAnyFile: true), $rule(path: 'Application/Static/svg', allowFeatureGrouping: true, allowAnyFile: true), $rule(