-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gulp-like imperative config doesn't work #2
Comments
This is because of a bug in Grunt, please see: gruntjs/grunt#1236 |
Sorry to bother you again, but is watching still possible while your PR is pending? Should I let grunt-contrib-watch do the watching instead of gulp? Thank you, based shama. |
Oh is that happening when watching? That issue is related only when grunt.initConfig({
gulp: {
foo: function() {
return gulp.src('foo').pipe(bar()).pipe(gulp.dest('bar'));
}
}
}); |
I'm curious about watching too. What is the best way of doing that - through gulp or through grunt? |
@szarouski Which ever works best for you. FWIW, both grunt and gulp use the same underlying watch library: https://github.com/shama/gaze |
Pass an object or else:
The text was updated successfully, but these errors were encountered: