Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. gulp.task('deploy', function() {
  2. var conn = ftp.create({
  3. secure: true,
  4. host: 'mywebsite.tld',
  5. user: 'me',
  6. password: 'mypass',
  7. parallel: 10,
  8. log: gutil.log
  9. });
  10.  
  11. var source = ['dist/**/*'];
  12. return gulp.src(source, {base: 'dist', buffer: false}).pipe(plg.plumber())
  13. .pipe(conn.newer('/public_html'))
  14. .pipe(conn.dest('/public_html'));
  15. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement