We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is an option on nodemon for delay;
nodemon script.js --delay=2
How can we use this delay option in gulp-nodemon? I want to put delay time between code-change and restart.
I tried on options like nodemonOptions={delay:2} but it doesn't work.
nodemonOptions={delay:2}
The text was updated successfully, but these errors were encountered:
I'm joining the question. Need this option too...
Sorry, something went wrong.
This would solve some issues I am encountering with gulp v4.
Hi, all options pass to gulp-nodemon(settings) are transmitted on nodemon(settings)
gulp.task('start', function (done) { nodemon({ script: 'server.js' , ext: 'js html' , env: { 'NODE_ENV': 'development' } , delay: 500 , done: done }) })
Delay should be a number in milliseconds
No branches or pull requests
There is an option on nodemon for delay;
How can we use this delay option in gulp-nodemon? I want to put delay time between code-change and restart.
I tried on options like
nodemonOptions={delay:2}
but it doesn't work.The text was updated successfully, but these errors were encountered: