diff --git a/docs/gotcha.txt b/docs/gotcha.txt index da246e218..ece664d62 100644 --- a/docs/gotcha.txt +++ b/docs/gotcha.txt @@ -24,6 +24,8 @@ save you many hours of grief. site uses a different parser for this template it will need to be manually upgraded. + * WebGUI now requires HTML::Packer, JavaScript::Packer, and CSS::Packer + 7.7.4 -------------------------------------------------------------------- * WebGUI now requires XML::FeedPP version 0.40 or greater. diff --git a/sbin/testEnvironment.pl b/sbin/testEnvironment.pl index a7f54f7b8..0a130bbc6 100755 --- a/sbin/testEnvironment.pl +++ b/sbin/testEnvironment.pl @@ -123,6 +123,9 @@ checkModule("Module::Find", "0.06" ); checkModule("Class::C3", "0.19" ); checkModule("Params::Validate", "0.81" ); checkModule("Clone", "0.31" ); +checkModule('HTML::Packer', "0.4" ); +checkModule('JavaScript::Packer', '0.02' ); +checkModule('CSS::Packer', '0.2' ); failAndExit("Required modules are missing, running no more checks.") if $missingModule;