-
Notifications
You must be signed in to change notification settings - Fork 154
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
Unhandled stream error in pipe #142
Comments
Please see this gulp recipe (linked from the README) which will help you handle your stream's errors. |
That yields the same error. |
Which usemine implementation are you using. What is "rev"? |
I'm using the first example on this README: https://github.com/zont/gulp-usemin Using node 0.12 |
Some error when trying gulp. My gulpfile.js is: var gulp = require('gulp');
var rev = require('gulp-rev-append');
var concat = require('gulp-concat');
var uglify = require('gulp-uglify');
var watch = require('gulp-watch')
var md5 = require("md5-file");
var replace = require('gulp-replace')
// Rerun the task when a file changes
gulp.task('scripts', function () {
return gulp.src(['**/*.js'])
.pipe(gulp.dest('dist'))
.pipe(uglify())
.pipe(gulp.dest('dist'));
}); It still exists although I removed all the unused requirements. So I think there is nothing wrong with them. |
I found the error is I |
Using node 12 and here is the gulpfile:
The text was updated successfully, but these errors were encountered: