Giter VIP home page Giter VIP logo

Comments (4)

kaminaly avatar kaminaly commented on June 16, 2024

can i see your html.clean task code?

from gulp-sync.

Sawtaytoes avatar Sawtaytoes commented on June 16, 2024
gulp.src(src)
  .pipe($.newer(dest))
  .pipe($.using({prefix: 'html.build', color: 'yellow'}))
  .pipe($.debug({title: 'html.build'}))
  .pipe(gulp.dest(dest))

from gulp-sync.

kaminaly avatar kaminaly commented on June 16, 2024

ok, maybe I've got it.
I use gulp sync feature for the gulp-sync.
so you have to fit in gulp's sync rule.

you can choose from 2 way below.

return Stream

gulp.task('html.clean', function(){
  return gulp.src(src)
    .pipe($.newer(dest))
    .pipe($.using({prefix: 'html.build', color: 'yellow'}))
    .pipe($.debug({title: 'html.build'}))
    .pipe(gulp.dest(dest));
});

do callback

gulp.task('html.clean', function(callback){
  gulp.src(src)
    .pipe($.newer(dest))
    .pipe($.using({prefix: 'html.build', color: 'yellow'}))
    .pipe($.debug({title: 'html.build'}))
    .pipe(gulp.dest(dest))
    .on('end', function(){
      callback();
    });
});

if you choose do callback, you have to care about error handling.
sometimes, it stops due to a gulp plugin error.
some plugins don't implement enough about error and end event.

from gulp-sync.

Sawtaytoes avatar Sawtaytoes commented on June 16, 2024

Returning the stream didn't fix it, but I could try the callback method and see if that helps.

from gulp-sync.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.