From 3250f793a2bf5746c132c3a09945b222b08a4710 Mon Sep 17 00:00:00 2001 From: Jon Stovell Date: Sun, 30 Jun 2024 20:11:36 -0600 Subject: [PATCH] Includes new minifier files in export_load_css_js() Signed-off-by: Jon Stovell --- Sources/Profile-Export.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/Profile-Export.php b/Sources/Profile-Export.php index 25b58e7869..5dc1e4e647 100644 --- a/Sources/Profile-Export.php +++ b/Sources/Profile-Export.php @@ -1815,6 +1815,8 @@ function export_load_css_js() include_once(implode(DIRECTORY_SEPARATOR, array($sourcedir, 'minify', 'src', 'Exceptions', 'IOException.php'))); include_once(implode(DIRECTORY_SEPARATOR, array($sourcedir, 'minify', 'src', 'Minify.php'))); + include_once(implode(DIRECTORY_SEPARATOR, array($sourcedir, 'minify', 'path-converter', 'src', 'ConverterInterface.php'))); + include_once(implode(DIRECTORY_SEPARATOR, array($sourcedir, 'minify', 'path-converter', 'src', 'NoConverter.php'))); include_once(implode(DIRECTORY_SEPARATOR, array($sourcedir, 'minify', 'path-converter', 'src', 'Converter.php'))); include_once(implode(DIRECTORY_SEPARATOR, array($sourcedir, 'minify', 'src', 'CSS.php')));