-
Notifications
You must be signed in to change notification settings - Fork 660
🐐 Bring more inline with gulp best practices #385
Conversation
8aab28b
to
0db190d
Compare
Reviewed. |
0db190d
to
2df8b96
Compare
updated! |
@@ -49,6 +49,50 @@ var styleTask = function (stylesPath, srcs) { | |||
.pipe($.size({title: stylesPath})); | |||
}; | |||
|
|||
var jshintTask = function (src) { | |||
return gulp.src(src) | |||
.pipe(reload({stream: true, once: true})) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey, it seems to me that you are reintroducing the double reload that was removed as per PR #370, is that intended?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just need to rebase and it should go away (unless Git gets really confused)👌 good spot though I will doubly make sure it gets removed!
395e925
to
6bd6cf5
Compare
yep it went away @didrocks :) |
@samccone great! thanks for confirming ;) |
Tried running locally again. Looks like we're now breaking on the HTML task and are running into some linting issues:
|
Extract non-specific tasks to fns to be more inline with "the gulp way✨" Fixes #289
6bd6cf5
to
c6bbc6e
Compare
should be GTG now 🏁 |
Tested again and everything is passing now. Have some 🍰! |
Extract non-specific tasks to fns to be more inline with "the gulp way✨"
Fixes #289