vinyl-ftp

Vinyl-ftp strange error

泄露秘密 提交于 2019-12-23 03:36:37
问题 I am using Vinyl-ftp to do deployment, when i try to connect with FileZilla or Total Commander everything works ok, but when i try wirh Gulp task i got strange error, i dont see the difference, here is my Gulp task and error message gulp.task('ftp-test-connection', function () { var conn = ftp.create({ host: 'hostname', user: 'user', password: 'password', parallel: 10, log: gutil.log }); var globs = [ './styles/**/*{css,png,jpg,gif,ttf,woff,eof,svg,woff2}', './images/**', './views/**', '.

Vinyl-ftp strange error

落花浮王杯 提交于 2019-12-23 03:36:07
问题 I am using Vinyl-ftp to do deployment, when i try to connect with FileZilla or Total Commander everything works ok, but when i try wirh Gulp task i got strange error, i dont see the difference, here is my Gulp task and error message gulp.task('ftp-test-connection', function () { var conn = ftp.create({ host: 'hostname', user: 'user', password: 'password', parallel: 10, log: gutil.log }); var globs = [ './styles/**/*{css,png,jpg,gif,ttf,woff,eof,svg,woff2}', './images/**', './views/**', '.

Vinyl-ftp strange error

让人想犯罪 __ 提交于 2019-12-07 22:45:30
I am using Vinyl-ftp to do deployment, when i try to connect with FileZilla or Total Commander everything works ok, but when i try wirh Gulp task i got strange error, i dont see the difference, here is my Gulp task and error message gulp.task('ftp-test-connection', function () { var conn = ftp.create({ host: 'hostname', user: 'user', password: 'password', parallel: 10, log: gutil.log }); var globs = [ './styles/**/*{css,png,jpg,gif,ttf,woff,eof,svg,woff2}', './images/**', './views/**', './scripts/vendor.scripts.min.js', './dist/index.html', './dist_test/main.scripts.min.js', './dist_test/web

Gulp Vinyl FTP using Gulp newer is not noticing changes in files and is therefore not deploying UPDATE: TIME ZONE ISSUE

可紊 提交于 2019-12-06 05:54:45
问题 RESOLVED: I built a gulp plugin to solve the problem... https://www.npmjs.com/package/gulp-mtime-correction The issue I'm having is that my gulp task using Vinyl-FTP and Gulp-Newer doesn't seem to be noticing changes in my files and therefore is not sending the changes via FTP. So here are the FTP gulp settings/tasks in gulpfile.js // FTP settings const FTP = { connOpts : { host : 'ftp.****.co.uk', user : '****', password : '*****', parallel : 10, log : gutil.log }, directoryPath :