From f62b4a8bf0b3b900ed195027a590c3f300e040b8 Mon Sep 17 00:00:00 2001 From: Timo Tijhof Date: Wed, 1 Apr 2015 00:44:53 +0100 Subject: [PATCH] mwdocgen: Exclude node_modules from Doxygen So that local runs don't take forever and won't recurse into unrelated php files in some npm package. Change-Id: Ic8068fa048075584c9334d0c21fb4efd87eade02 --- maintenance/mwdocgen.php | 1 + 1 file changed, 1 insertion(+) diff --git a/maintenance/mwdocgen.php b/maintenance/mwdocgen.php index ee0ff01766..49eae4a539 100644 --- a/maintenance/mwdocgen.php +++ b/maintenance/mwdocgen.php @@ -91,6 +91,7 @@ class MWDocGen extends Maintenance { $this->template = $IP . '/maintenance/Doxyfile'; $this->excludes = array( 'vendor', + 'node_modules', 'images', 'static', ); -- 2.20.1