check-deploy gulp task now builds all docs before deploying.

This commit is contained in:
Jay Traband 2015-10-10 08:58:43 -07:00
parent 76ec18f9bb
commit a2fa48d0b4
1 changed files with 1 additions and 1 deletions

View File

@ -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');