Gulp 怎么了?
What's wrong with Gulp?
有人可以告诉我,Gulp 有什么问题吗?
gulp.task('watch', function () {
gulp.watch('./scss/**/*', ['scss']);
gulp.src('/')
.pipe(webserver({
fallback: 'index.html',
livereload: true,
directoryListing: {
enable: true,
path: '/'
},
open: false,
}));
});
当运行gulp观看时,获得
Error: EACCES: permission denied, scandir '/tmp/KSOutOfProcessFetcher.0.ppfIhqX0vjaTSb8AJYobDV7Cu68='
at Error (native)
怎么了?谢谢
您似乎没有权限扫描您指定的文件夹。
尝试以下方法
gulp.task('watch', function () {
gulp.watch('./scss/**/*', ['scss']);
gulp.src('./')
.pipe(webserver({
fallback: 'index.html',
livereload: true,
directoryListing: {
enable: true,
path: './'
},
open: false,
}));
});
文件系统的根 /
替换为 ./
,相对当前文件夹。
有人可以告诉我,Gulp 有什么问题吗?
gulp.task('watch', function () {
gulp.watch('./scss/**/*', ['scss']);
gulp.src('/')
.pipe(webserver({
fallback: 'index.html',
livereload: true,
directoryListing: {
enable: true,
path: '/'
},
open: false,
}));
});
当运行gulp观看时,获得
Error: EACCES: permission denied, scandir '/tmp/KSOutOfProcessFetcher.0.ppfIhqX0vjaTSb8AJYobDV7Cu68='
at Error (native)
怎么了?谢谢
您似乎没有权限扫描您指定的文件夹。
尝试以下方法
gulp.task('watch', function () {
gulp.watch('./scss/**/*', ['scss']);
gulp.src('./')
.pipe(webserver({
fallback: 'index.html',
livereload: true,
directoryListing: {
enable: true,
path: './'
},
open: false,
}));
});
文件系统的根 /
替换为 ./
,相对当前文件夹。