vinyl-ftp有此功能可以上传新的和不同大小的文件conn.differentSize(remoteFolder [,options])
我正在尝试测试只有较新的文件会上传,到目前为止没有发生任何事情,文件只是没有上传。这是我的配置。
gulp.task( 'deploy', function() {
var conn = ftp.create( {
host: hostremote,
user: userremote,
password: passremote,
parallel: 10,
log:true
} );
var globs = [
'*',
'build/**',
'dist/**',
'fonts/**',
'html/**',
'IE6/**',
'images/**',
'include/**',
'js/**',
'language/**',
'lib/**',
'!node_modules',
'!original',
'!node_modules/**',
'!original/**'
];
// using base = '.' will transfer everything to /public_html correctly
// turn off buffering in gulp.src for best performance
return gulp.src( globs, { base: '.', buffer: false } )
.pipe( conn.newerOrDifferentSize( '/test2' ) )
.pipe( conn.dest('/test') );} );
有什么想法吗?
答案 0 :(得分:0)
Heikki指出,远程路径必须相同;否则newerOrDifferentSize
会将images/foo.png
与test2/images/foo.png
进行比较,然后肯定会上传到test/images/foo.png
。
如果这不能解决问题,您是否介意在https://github.com/morris/vinyl-ftp使用完整日志以及可能的FTP服务器软件打开问题?这可能是一个错误。