gulp.task('watch', function () {
gulp.watch('./scss/**/*', ['scss']);
gulp.src('/')
.pipe(webserver({
fallback: 'index.html',
livereload: true,
directoryListing: {
enable: true,
path: '/'
},
open: false,
}));
});
当运行gulp watch时,获取
Error: EACCES: permission denied, scandir '/tmp/KSOutOfProcessFetcher.0.ppfIhqX0vjaTSb8AJYobDV7Cu68='
at Error (native)
出了什么问题?感谢。
答案 0 :(得分:2)
您似乎没有权限扫描您指定的文件夹。
尝试以下
gulp.task('watch', function () {
gulp.watch('./scss/**/*', ['scss']);
gulp.src('./')
.pipe(webserver({
fallback: 'index.html',
livereload: true,
directoryListing: {
enable: true,
path: './'
},
open: false,
}));
});
文件系统的根/
将替换为相对当前文件夹./
。