-
-
Notifications
You must be signed in to change notification settings - Fork 156
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
events.js:72 // unhandled 'error' event; Error: This socket is closed #85
Comments
Changing the versions of the
|
See: jpegtran-bin #54. |
workaround imagemin/jpegtran-bin#54 (comment) |
Please, reopen this issue and make plugin updates according comments above. |
Please, realize this issue has nothing to do with this plugin directly. |
Repository owner
locked and limited conversation to collaborators
Dec 25, 2014
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm using the
gulp-imagemin
plugin to minify image files. Unfortunately, every time I save into the image directory specified in mywatch
task (gulp.watch('src/assets/images/**/*', ['images']);
), there is the following error:Here's my
images
task:What I've tried so far
npm cache clean
followed by deleting all everything innode_modules
folder and runningnpm install
images
task and targeting only one image (e.g.gulp.src('src/assets/images/background-image.png')
. This was mentioned in Error That Fixes by Restarting #45.gulp.src
. (e.g.gulp.src(['images/**/*.png', 'images/**/*.jpg', 'images/**/*.svg'])
. This was mentioned in Error That Fixes by Restarting #45.gulp-imagemin
and reinstallgulp-imagemin
npm install jpegtran-bin
(there appeared to be an error when installing this, more on this in a sec). This was mentioned in grunt-contrib-imagemin #272.Now, one thing I noticed a problem with .. was when installing
gulp-imagemin
there was an error with one of it's dependencies. When installing there were some errors withjpegtran
so I manually attempted to installjpegtran-bin
. When running this command I received the following result:My gulpfile.js:
Any idea on if there's a bug here or if I'm doing something incorrectly?
The text was updated successfully, but these errors were encountered: