我正在尝试使用gulp运行简单的缩小过程。我已经在我的机器上的本地源文件上成功完成了这个,但我想要做的是将文件定位在共享网络驱动器上。基本上我正在做的事情:
gulp.src(_inputPath)
.pipe(uglify())
.pipe(gulp.dest(_outputPath));
_inputPath
和_outputPath
是由配置文件设置的变量:
{
"input": "\\\\drive-name\\home\\project\\js\\*.js",
"output": "\\\\drive-name\\home\\project\\dist\\"
}
文件输出到网络目录工作正常(通过将输入设置为本地目录进行测试),但我似乎无法使输入工作。我做错了什么?]
编辑:
我能够做到以下几点:
glob('**/*.js', {cwd:_inputPath}, (err, files) => { if (err) throw err; console.log(files) });
并成功返回文件,但尝试使用cwd
中的gulp.src
选项无效:
gulp.src('**/*.js', {cwd: _inputPath})