Fix missing images

On my previous commits I forgot to include the newly created task
'images' as part of the production task.

Change-Id: I0ad63356e2bf16ff2794333216a2c0b4f5b16089
This commit is contained in:
Glauco Oliveira 2015-11-04 18:24:41 -02:00
parent 993dc88ea8
commit 27d78dbcc6
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ gulp.task('prod', ['clean'], function(cb) {
global.isProd = true;
runSequence(
['styles', 'fonts', 'vendor-js', 'views', 'browserify'],
['styles', 'fonts', 'images', 'vendor-js', 'views', 'browserify'],
'gzip', cb);
});