Skip to content
This repository was archived by the owner on Sep 3, 2024. It is now read-only.

Add vinyl-ftp for ftp deployment #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions gulpconfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,15 @@ module.exports = {
},
},

ftp: {
dest: '/public_html/domain.com/wp-content/themes/'+project,
dist: dist,
parallel: 3,
host: 'domain.com',
user: '[email protected]',
password: 'password'
},

watch: { // What to watch before triggering each specified task; if files matching the patterns below change it will trigger BrowserSync or Livereload
src: {
styles: src+'scss/**/*.scss',
Expand Down
30 changes: 30 additions & 0 deletions gulpfile.js/tasks/ftp.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
// ==== FTP ==== //

var gulp = require('gulp'),
gutil = require( 'gulp-util' ),
ftp = require ('vinyl-ftp'),
config = require('../../gulpconfig').ftp;

// Copy PHP source files to the `build` folder
gulp.task( 'deploy', function () {

var conn = ftp.create( {
host: config.host,
user: config.user,
password: config.password,
parallel: config.parallel,
log: gutil.log
} );

var globs = [
config.dist+'/**/*'
];

// using base = '.' will transfer everything to /public_html correctly
// turn off buffering in gulp.src for best performance

return gulp.src( globs, { base: config.dist, buffer: false } )
.pipe( conn.differentSize( config.dest ) ) // only different sized files
.pipe( conn.dest( config.dest ) );

} );
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
"spin.js": "^2.3.2",
"svg4everybody": "^2.1.0",
"timeago": "^1.5.3",
"vinyl-ftp": "^0.6.0",
"wp-ajax-page-loader": "^0.3.0"
},
"scripts": {
Expand Down