GITLAB
Jose Pinto
/ foca-seguimiento
Toggle navigation
Sign in
Sign in
Activity
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code ยป
Commit
18d1a649b1ed2091e9c33c872f07a02ba121e779
Authored by
Eric Fernandez
2019-01-17 17:34:19 -0300
1 parent
5512da9db7
Exists in
master
watch
Showing
1 changed file
with
4 additions
and
0 deletions
Show diff stats
gulpfile.js
Side-by-side Diff
Inline Diff
gulpfile.js
Diff comments
View file @
18d1a64
...
...
@@ -80,3 +80,7 @@ gulp.task('webserver', function() {
80
80
});
81
81
82
82
gulp.task('default', ['webserver']);
83
+
84
+gulp.task('watch', function() {
85
+ gulp.watch([paths.srcJS, paths.srcViews], ['uglify']);
86
+});