add build-dev logic to exclude search index creation on local

This commit is contained in:
Westly Wright
2018-05-31 22:31:59 -07:00
committed by Denise
parent 90d095d4b6
commit 2677765b55
+1 -1
View File
@@ -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();
});
});