gulp-sftp
gulp-sftp copied to clipboard
Gulp SFTP Deploy
I can't find a fix for this problem. I get this error (throw new TypeError(kFromErrorMsg);) it started a couple months back . I Can't upload any fils to SFTP see...
Just a few days ago I started seeing this error in my Travis CI builds using gulp-sftp: ``` TypeError: file.pipe is not a function at /Users/ashlinaronin/Local Sites/portland-naacp/app/public/wp-content/themes/portland-naacp/node_modules/gulp-sftp/index.js:275:22 at Object.async.whilst (/Users/ashlinaronin/Local...
``` [01:29:41] gulp-debug: dist/app [01:29:41] gulp-debug: dist/assets [01:29:41] gulp-debug: dist/favicon.ico [01:29:41] Authenticating with password. [01:29:41] gulp-debug: dist/index.html [01:29:41] gulp-debug: 4 items buffer.js:141 throw new TypeError('must start with number, buffer, array...
Sometimes it is needed to ensure that no old files are left in the remote destination directory. This commit introduces the new option `clearDestination` which makes gulp-sftp delete everything from...
Probably not news but didn't see it in issues when I searched. Looks like [email protected] is a dependency. https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5 That said, thanks for the plugin. Very helpful
A common feature of FTP clients (and other plugins such as [vinyl-ftp](https://www.npmjs.com/package/vinyl-ftp)) is the ability to only upload files that are newer than the remote or have a different size...
Hi there, thanks for your effort! it would be amazing if you could introduce an option to only overwrite newer files, like in [vinyl-ftp](https://github.com/morris/vinyl-ftp#connnewer-remotefolder-options-).
I have a sftp task like this: > gulp.task('sftp', ['clean-remote'], function() { return gulp.src('./dist/**') .pipe(sftp(testSshConfig)); }); when I exec `gulp sftp` command, the terminal print following logs: >[20:46:51] Using gulpfile...
Instead of just creating the innermost directory on upload, if it does not exist, this will check to see if all the nested directories exist, and create all the missing...