From: Timo Tijhof Date: Tue, 31 Mar 2015 23:44:53 +0000 (+0100) Subject: mwdocgen: Exclude node_modules from Doxygen X-Git-Tag: 1.31.0-rc.0~11869^2 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=f62b4a8bf0b3b900ed195027a590c3f300e040b8;p=lhc%2Fweb%2Fwiklou.git 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 --- 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', );