Stop gulp from changing shell header name / cmd

When gulp is called, it changes the title of my cmd (windows) to: "gulp"

I want the window name to remain as it was

I know that I can use https://www.npmjs.com/package/gulp-shell but that seems redundant

I mean, if I call the script package

title mytitle gulp . 

gulp window title, not mytitle

+8
cmd batch-file gulp
source share
1 answer

Have you tried using START when calling gulp? Usually this will override everything that it tries to do on your command line and still open the file / program that you are trying to open.

-one
source share

All Articles