Skip to content

Commit 7f6258f

Browse files
committed
Fixed error by template generation at first time
When the view is too heavy and takes time to generate, it won't be available for browserify to import
1 parent 925a4b9 commit 7f6258f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gulp/tasks/development.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ gulp.task('dev', ['clean'], function(cb) {
77

88
global.isProd = false;
99

10-
runSequence(['styles', 'images', 'fonts', 'views', 'browserify'], 'watch', cb);
10+
runSequence(['styles', 'images', 'fonts', 'views'], 'browserify', 'watch', cb);
1111

12-
});
12+
});

0 commit comments

Comments
 (0)