gulp-step
The plugin for defining internal build steps for the Gulp@next. Allows to create tasks that aren't visible for the Gulp CLI.
Example of a Gulpfile.js
:
// Require Gulpconst gulp = ; // Require the moduleconst gulpStep = ; // Install the module into a Gulp objectgulpStep; // Use gulp.step to define build steps. Steps are similar to Gulp tasks, but can't be // started directly from the Gulp CLIgulp; gulp; // $ gulp --task-simple// b//// WRONG: $ gulp a// CORRECT: $ gulp b // Step names can be used exactly in the same way as task names in gulp.series and gulp.parallel gulp; gulp;