From 2677765b55f469c17c646c35157e01feac04d369 Mon Sep 17 00:00:00 2001 From: Westly Wright Date: Thu, 31 May 2018 16:46:06 -0700 Subject: [PATCH] add build-dev logic to exclude search index creation on local --- gulpfile.babel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.babel.js b/gulpfile.babel.js index 93018f54d51..daed7d6a4f3 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -46,7 +46,7 @@ gulp.task('build-staging', (cb) => { }); gulp.task('build-dev', (cb) => { - runSequence('pub-delete', 'sass', 'build:vendor', 'build:app', 'fonts', 'img', 'hugo-dev' , 'hugo-search-index', () => { + runSequence('pub-delete', 'sass', 'build:vendor', 'build:app', 'fonts', 'img', 'hugo-dev' , /* 'hugo-search-index', */ () => { cb(); }); });