mwdocgen: Exclude node_modules from Doxygen
authorTimo Tijhof <krinklemail@gmail.com>
Tue, 31 Mar 2015 23:44:53 +0000 (00:44 +0100)
committerTimo Tijhof <krinklemail@gmail.com>
Tue, 31 Mar 2015 23:44:53 +0000 (00:44 +0100)
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

index ee0ff01..49eae4a 100644 (file)
@@ -91,6 +91,7 @@ class MWDocGen extends Maintenance {
                $this->template = $IP . '/maintenance/Doxyfile';
                $this->excludes = array(
                        'vendor',
+                       'node_modules',
                        'images',
                        'static',
                );