# gulp-step **Repository Path**: mirrors_DevExpress/gulp-step ## Basic Information - **Project Name**: gulp-step - **Description**: The plugin for defining internal build steps for the Gulp@next - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-24 - **Last Updated**: 2026-01-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 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`: ```js // Require Gulp const gulp = require('gulp'); // Require the module const gulpStep = require('gulp-step'); // Install the module into a Gulp object gulpStep.install(); // Use gulp.step to define build steps. Steps are similar to Gulp tasks, but can't be // started directly from the Gulp CLI gulp.step('a', done => { console.log('a'); done(); }); gulp.task('b', done => { console.log('b'); done(); }); // $ 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.step('c', gulp.series('a', 'b')); gulp.task('d', gulp.parallel('a', 'b')); ```