From d75d5c8724f81cc731df0ec747063c4c31b96824 Mon Sep 17 00:00:00 2001 From: Denys Vuika Date: Thu, 21 Apr 2016 16:15:14 +0100 Subject: [PATCH] Fix gulp 'build and reload' issue --- demo-shell-ng2/gulpfile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/demo-shell-ng2/gulpfile.js b/demo-shell-ng2/gulpfile.js index 90c9f0a7e3..c9e752a533 100644 --- a/demo-shell-ng2/gulpfile.js +++ b/demo-shell-ng2/gulpfile.js @@ -78,3 +78,4 @@ gulp.task('serve', ['build'], function() { gulp.task('build', ['tslint', 'copy:assets', 'copy:libs', 'copy:typings', 'compile']); gulp.task('dev', ['build', 'serve'], reload); gulp.task('default', ['build']); +gulp.task('buildAndReload', ['build'], reload);