From adebc92e0a4324d38962e8c6bb55fde11f2eee0d Mon Sep 17 00:00:00 2001 From: Alex Coles Date: Fri, 13 Mar 2015 12:41:07 -0300 Subject: [PATCH] Make default gulp task build style guide Signed-off-by: Alex Coles --- frontend/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/gulpfile.js b/frontend/gulpfile.js index 839f92ae8b..1a7d666097 100644 --- a/frontend/gulpfile.js +++ b/frontend/gulpfile.js @@ -129,7 +129,7 @@ gulp.task('tests:protractor', ['webdriver:update', 'webpack', 'sass', 'express'] }); }); -gulp.task('default', ['webpack', 'sass', 'express']); +gulp.task('default', ['webpack', 'fonts', 'styleguide', 'sass', 'express']); gulp.task('dev', ['default', 'watch']); gulp.task('watch', function() { gulp.watch('app/**/*.js', ['webpack']);