Questions tagged [vinyl-ftp]
19 questions
0
votes
1 answer
Add Vinyl FTP deploy to an existing gulp watch workflow
I have little experience with Gulp and just want to be able to automatically upload my css file immediately after Gulp has created it from my SASS files through gulp watch:css
I've tried adding the 'deploy' task into the gulp watch:css task, but I…

arrr_matey
- 167
- 2
- 12
0
votes
0 answers
GULP - vinyl-ftp doesn't upload subfolders
I try to make a deploy-task in my gulpfile.
/** Configuration **/
var user = '12345';
var password = 'mypwd';
var host = 'example.com';
var port = 21;
var localFilesGlob = [
'build/*',
'php/*'];
var remoteFolder = '/gulptest'
function…

crunchy
- 179
- 10
0
votes
0 answers
Gulp vinyl-ftp upload taking too long
In my project i need gulp to watch files for changes in my /src/ folder and upload them to /public/ ftp folder.
The problem is - it takes too long because vinyl-ftp first gets listing of all folders in project by alphabet and uploads new files only…

DesuNyan
- 5
- 4
0
votes
1 answer
Gulp deploy ftp to production
I am using some gulp task to deploy to production, but i have problem with gulp-deploy, i need some other files form other folder to be copied on diferrent location on server this is my task
//Gulp APP ftp deploy
gulp.task('deploy-app', function ()…

Miomir Dancevic
- 6,726
- 15
- 74
- 142