
Security News
crates.io Ships Security Tab and Tightens Publishing Controls
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.
gulp-watch-sequence
Advanced tools
Merge the actions of multiple watch triggers into a single common sequence.
Merge the actions of multiple watch triggers into a single common sequence.
The the following example we are watching both javascript and css.
It is possible (using save-all in our IDE) that both will trigger in close succession. However we wish the 'html' and 'reload' tasks to be performed only once.
Both will fire the different handlers that we have obtained for them and be merged on the queue. The queue is flushed 300 milliseconds following.
var gulp = require('gulp'),
watch = require('gulp-watch'),
sequence = require('gulp-watch-sequence');
gulp.task('watch', function () {
var queue = sequence(300);
watch('src/**/*.js', {
name : 'JS',
emitOnGlob: false
}, queue.getHandler('js', 'html', 'reload'));
watch('scss/**/*.scss', {
name : 'CSS',
emitOnGlob: false
}, queue.getHandler('css', 'html', 'reload'));
});
Get an instance for the given timeout value.
Sequences triggered within the timeout will share the same sequence run, delayed by at most timeout milliseconds.
The before method may return void to execute the pending sequence, or may return a new sequence based upon the
arguments it was given.
@param {number?} timeout The period to aggregate triggers over in milliseconds.
@param {function?} filter A method to filter the aggregate sequence directly before it is run.
@returns {{getHandler:function, enqueue:function, flush:function}}
Get a gulp-watch handler for the given sequence.
@param {...string} A sequence of gulp tasks to run.
@return {function} A gulp-watch handler method that will enqueue the given sequence.
Manually enqueue the given sequence of gulp tasks, possibly including done callback.
@param {...string|function} A sequence of gulp tasks to run, with optional trailing callback.
@returns {array.<string|function} The current value of the aggregate sequence.
Manually trigger the currently aggregated sequence of tasks.
FAQs
Merge the actions of multiple watch triggers into a single common sequence.
We found that gulp-watch-sequence demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
crates.io adds a Security tab backed by RustSec advisories and narrows trusted publishing paths to reduce common CI publishing risks.

Research
/Security News
A Chrome extension claiming to hide Amazon ads was found secretly hijacking affiliate links, replacing creators’ tags with its own without user consent.

Security News
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.