check-deploy gulp task now builds all docs before deploying.
This commit is contained in:
parent
76ec18f9bb
commit
a2fa48d0b4
|
@ -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...');
|
console.log('running harp compile...');
|
||||||
return execPromise('npm run harp -- compile . ./www', {}).then(function() {
|
return execPromise('npm run harp -- compile . ./www', {}).then(function() {
|
||||||
execPromise('npm run live-server ./www');
|
execPromise('npm run live-server ./www');
|
||||||
|
|
Loading…
Reference in New Issue