File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -102,24 +102,23 @@ gulp.task('start:server:test', function() {
102102} );
103103
104104gulp.task('watch', function () {
105-
106- $ . watch ( { glob : paths . styles } )
105+ $ . watch ( paths . styles )
107106 . pipe ( $ . plumber ( ) )
108107 . pipe ( styles ( ) )
109108 . pipe ( $ . connect . reload ( ) ) ;
110109
111- $ . watch ( { glob : paths . views . files } )
110+ $ . watch ( paths . views . files )
112111 . pipe ( $ . plumber ( ) )
113112 . pipe ( $ . connect . reload ( ) ) ;
114113
115- $ . watch ( { glob : paths . scripts } )
114+ $ . watch ( paths . scripts )
116115 . pipe ( $ . plumber ( ) )
117116 . pipe ( lintScripts ( ) ) < % if ( coffee ) { % >
118117 . pipe ( $ . coffee ( { bare : true } ) . on ( 'error' , $ . util . log ) )
119118 . pipe ( gulp . dest ( '.tmp/scripts' ) ) < % } %>
120119 . pipe ( $ . connect . reload ( ) ) ;
121120
122- $ . watch ( { glob : paths . test } )
121+ $ . watch ( paths . test )
123122 . pipe ( $ . plumber ( ) )
124123 . pipe ( lintScripts ( ) ) ;
125124
You can’t perform that action at this time.
0 commit comments