From: Geoff Kimball Date: Fri, 26 Feb 2016 00:13:17 +0000 (-0800) Subject: Fix docs:debug Gulp task not working properly X-Git-Tag: v6.2.0~5^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0da0ec631e031952d3a3b1b391fac64fa65fed5b;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Fix docs:debug Gulp task not working properly --- diff --git a/gulp/docs.js b/gulp/docs.js index 6fc37b350..7db0efcc4 100644 --- a/gulp/docs.js +++ b/gulp/docs.js @@ -70,7 +70,7 @@ function buildSearch() { supercollider.buildSearch('_build/data/search.json', function() {}); } -gulp.task('docs:debug', ['docs'], function(cb) { +gulp.task('docs:debug', ['docs:all'], function(cb) { var output = JSON.stringify(supercollider.tree, null, ' '); require('fs').writeFile('./_debug.json', output, cb); });