From a2fa48d0b47087592f21b5a37641d03461c91d5f Mon Sep 17 00:00:00 2001 From: Jay Traband Date: Sat, 10 Oct 2015 08:58:43 -0700 Subject: [PATCH] check-deploy gulp task now builds all docs before deploying. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 19204b08f5..e4fce364a7 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -162,7 +162,7 @@ gulp.task('git-changed-examples', ['_shred-devguide-examples'], function(){ }); }); -gulp.task('check-deploy', function() { +gulp.task('check-deploy', ['build-docs'], function() { console.log('running harp compile...'); return execPromise('npm run harp -- compile . ./www', {}).then(function() { execPromise('npm run live-server ./www');