Coder Social home page Coder Social logo

Comments (3)

juanfran avatar juanfran commented on September 26, 2024 1

Hi!, sorry but currently you can't do it but maybe is possible to add the feature. I'm going to try these days to see if it's possible.

from gulp-multi-process.

purefan avatar purefan commented on September 26, 2024

Thanks @juanfran ! and again, thanks for all your work

from gulp-multi-process.

juanfran avatar juanfran commented on September 26, 2024

Hi! I haven't got an easy & clean solution to do this (yet¿), but I have an idea without changing this plugin.

function hook_stdout(message) {
  var old_write = process.stdout.write

  process.stdout.write = (function(write) {
      return function(string, encoding, fd) {
          arguments[0] = message + ': ' + arguments[0];
          write.apply(process.stdout, arguments);
      }
  })(process.stdout.write)

  return function() {
      process.stdout.write = old_write
  }
}

gulp.task('task1', function(cb) {
  hook_stdout('task example');
  
 // example gulp task
});

with this anything inside the task1 will log this "task example: example text from webpack plugin", this is what you need?

from gulp-multi-process.

Related Issues (6)

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.