All I get it gulp logs.
[18:03:26] Starting 'deploy'...
[18:03:26] Finished 'deploy' after 17 ms
My settings:
gulp.task('deploy', function () {
var conn = ftp.create({
host: 'xxx',
user: 'xxx',
password: 'xxx',
parallel: 10,
secure:true,
port:22,
log: gutil.log
} );
var globs = [
'images/**',
'styles/**',
'scripts/**',
'fonts/**',
'*.html'
];
// 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.newer('/memoryimprintstudio.com/wudental'))
.pipe(conn.dest('/memoryimprintstudio.com/wudental'));
All I get it gulp logs. [18:03:26] Starting 'deploy'... [18:03:26] Finished 'deploy' after 17 ms My settings: gulp.task('deploy', function () { var conn = ftp.create({ host: 'xxx', user: 'xxx', password: 'xxx', parallel: 10, secure:true, port:22, log: gutil.log } );
});