From 427d1d139ac4d6f871b3dd199e409a595ac38388 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20L=C3=B3pez-Barranco?= Date: Mon, 5 Oct 2015 14:46:14 +0200 Subject: [PATCH] fix(gulp): fix typo in the `build` task Close #1187 --- templates/common/root/_gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/common/root/_gulpfile.js b/templates/common/root/_gulpfile.js index d2bb71d62..83124d7ab 100644 --- a/templates/common/root/_gulpfile.js +++ b/templates/common/root/_gulpfile.js @@ -213,7 +213,7 @@ gulp.task('copy:fonts', function () { }); gulp.task('build', ['clean:dist'], function () { - runSequence(['images', 'copy:extras', 'copy:fonts', 'client:build'); + runSequence(['images', 'copy:extras', 'copy:fonts', 'client:build']); }); gulp.task('default', ['build']);