From 0da0ec631e031952d3a3b1b391fac64fa65fed5b Mon Sep 17 00:00:00 2001 From: Geoff Kimball Date: Thu, 25 Feb 2016 16:13:17 -0800 Subject: [PATCH] Fix docs:debug Gulp task not working properly --- gulp/docs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }); -- 2.47.2