diff --git a/framework/core/src/Frontend/Compiler/JsDirectoryCompiler.php b/framework/core/src/Frontend/Compiler/JsDirectoryCompiler.php index bc5406e5b..d69be61dc 100644 --- a/framework/core/src/Frontend/Compiler/JsDirectoryCompiler.php +++ b/framework/core/src/Frontend/Compiler/JsDirectoryCompiler.php @@ -18,8 +18,6 @@ use Illuminate\Filesystem\FilesystemAdapter; /** * Used to copy JS files from a package directory to the assets' directory. * Without concatenating them. Primarily used for lazy loading JS modules. - * - * @method DirectorySource[] getSources() */ class JsDirectoryCompiler implements CompilerInterface { @@ -53,6 +51,10 @@ class JsDirectoryCompiler implements CompilerInterface public function getUrl(): ?string { + foreach ($this->getSources() as $source) { + $this->eachFile($source, fn (JsCompiler $compiler) => $compiler->getUrl()); + } + return null; }