javascript – gulp在gulp.src()中的符号链接上给出错误

我的图像文件夹中有一个符号链接指向包含第三方库提供的外部图像的另一个文件夹(由bower管理 – 得到爱 javascript).作为构建过程的一部分,我按如下方式压缩所有图像:
gulp.task('images',function() {
return gulp.src('static/img/**/*')
    .pipe(imagemin({ optimizationLevel: 3,progressive: true,interlaced: true }))
    .pipe(gulp.dest('dist/img'))
});

当gulp到达img文件夹中的符号链接文件夹时,它会返回

events.js:72
    throw er; // Unhandled 'error' event
          ^
Error: EISDIR,read

使用gulp-debug显示它在符号链接文件夹上包含.我在Mac OSX上,使用ln -s创建了符号链接.有任何想法吗?

解决方法

gulp.src()使用 node-glob,它不会爬行符号链接

** If a “globstar” is alone in a path portion,then it matches zero or more directories and subdirectories searching for matches. It does not crawl symlinked directories.

Note that symlinked directories are not crawled as part of a **,though their contents may match against subsequent portions of the pattern. This prevents infinite loops and duplicates and the like.

我不知道它是错误还是只是跳过它们.

相关文章

事件冒泡和事件捕获 起因:今天在封装一个bind函数的时候,发现el.addEventListener函数支持第三个参数...
js小数运算会出现精度问题 js number类型 JS 数字类型只有number类型,number类型相当于其他强类型语言...
什么是跨域 跨域 : 广义的跨域包含一下内容 : 1.资源跳转(链接跳转,重定向跳转,表单提交) 2.资源...
@ "TOC" 常见对base64的认知(不完全正确) 首先对base64常见的认知,也是须知的必须有...
搞懂:MVVM模式和Vue中的MVVM模式 MVVM MVVM : 的缩写,说都能直接说出来 :模型, :视图, :视图模...
首先我们需要一个html代码的框架如下: 我们的目的是实现ul中的内容进行横向的一点一点滚动。ul中的内容...