As a developer tool, gulpjs/gulp-cli has picked up 408 stars on GitHub (JavaScript). Command Line Interface for gulp.
Snapshot summary built from the project's own GitHub metadata — there's no written TopGit review yet. The page will update automatically when a full review is published.
WHY NO REVIEW YET
TopGit writes full reviews for the most-starred, most-requested repositories. This page is a snapshot until then — see the READ ME tab for the original README in full.
When listing tasks with the gulp -T command, gulp-cli displays some custom metadata as defined upon task functions. Currently supported properties:
task.description - String of the description to display.
function clean() { ... }
clean.description = 'Cleans up generated files.';
task.flags - Object with key/value pairs being flag/description to display.
function build() { ... }
build.flags = {
'--prod': 'Builds in production mode.'
};
Example Usage:
function build() { ... }
build.description = 'Build entire project.';
build.flags = {
'--prod': 'Builds in production mode (minification, etc).'
};
// gulp 3.x
gulp.task('build', build);
// gulp 4.x
gulp.task(build);
Tasks
The task(s) listed on the command line will be executed.
If more than one task is listed, Gulp will execute all of them
concurrently, that is, as if they had all been listed as dependencies of
a single task.
By default, Gulp does not serialize tasks listed on the command line. If you would like to execute tasks serially, you must specify the --series flag. e.g. gulp clean build --series
Just running gulp will execute the task default. If there is no
default task, gulp will error.
Completion
Thanks to the grunt team, specifically Tyler Kellen
To enable tasks auto-completion in shell you should add eval "$(gulp --completion=shell)" in your .shellrc file.
Bash:
Add eval "$(gulp --completion=bash)" to ~/.bashrc.
Zsh:
Add eval "$(gulp --completion=zsh)" to ~/.zshrc.
Powershell:
Add Invoke-Expression ((gulp --completion=powershell) -join [System.Environment]::NewLine) to $PROFILE.
Fish:
Add gulp --completion=fish | source to ~/.config/fish/config.fish.
Compilers
You can find a list of supported JavaScript variant languages in Interpret. If you would like to add support for a new language, send pull requests/open issues on that project.
Environment
The CLI adds process.env.INIT_CWD which is the original cwd it was launched from.
Configuration
Configuration is supported through the use of a .gulp.* file (e.g. .gulp.js, .gulp.ts). You can find a list of supported JavaScript variant languages in Interpret.
A configuration file from the current working directory (cwd) or above are selected before a configuration file from the home directory (~).
Supported configurations properties:
Property
Description
description
Top-level description of the project/gulpfile (Replaces "Tasks for ~/path/of/gulpfile.js")
gulpfile
Set a default gulpfile
preload
An array of modules to preload before running the gulpfile. Any relative paths will be resolved against the --cwd directory (if you don't want that behavior, use absolute paths)
nodeFlags
An array of flags used to forcibly respawn the process upon startup. For example, if you always want your gulpfiles to run in node's harmony mode, you can set --harmony here
flags.continue
Continue execution of tasks upon failure by default.
flags.compactTasks
Reduce the output of task dependency tree by default.
flags.tasksDepth
Set default depth of task dependency tree.
flags.silent
Silence logging by default
flags.series
Run tasks given on the CLI in series (the default is parallel)
message(data)
A function used to translate messages that pass through gulp-cli. Can receive an object like { tag: Symbol(), ...props } where the tag is a symbol from @gulpjs/messages. The string returned from this function will be logged. If false is explicitly returned, no message will be logged.
timestamp(data)
A function used to provide timestamps for gulp-cli. Can receive an object like { tag: Symbol(), ...props } where the tag is a symbol from @gulpjs/messages. The string returned from this function will be output before any messages. If false is explicitly returned, no timestamp will be output.
Flags
gulp has very few flags to know about. All other flags are for tasks to use if needed.
Some flags only work with gulp 4 and will be ignored when invoked against gulp 3.
Flag
Short Flag
Description
--help
-h
Show this help.
--version
-v
Print the global and local gulp versions.
--preload [path]
Will preload a module before running the gulpfile. This is useful for transpilers but also has other applications.
--gulpfile [path]
-f
Manually set path of gulpfile. Useful if you have multiple gulpfiles. This will set the CWD to the gulpfile directory as well.
--cwd [path]
Manually set the CWD. The search for the gulpfile, as well as the relativity of all preloads (with the `--preload` flag) will be from here.
--tasks
-T
Print the task dependency tree for the loaded gulpfile.
--tasks-simple
Print a plaintext list of tasks for the loaded gulpfile.
--tasks-json [path]
Print the task dependency tree, in JSON format, for the loaded gulpfile. The [path] argument is optional, and if given writes the JSON to the path.
--tasks-depth [number]
Specify the depth of the task dependency tree to print. This flag can be used with --tasks or --tasks-json. (This flag was named --depth before but is deprecated.)
--compact-tasks
Reduce the output of task dependency tree by printing only top tasks and their child tasks. This flag can be used with --tasks or --tasks-json.
--sort-tasks
Will sort top tasks of task dependency tree. This flag can be used with --tasks.
--color
Will force gulp and gulp plugins to display colors, even when no color support is detected.
--no-color
Will force gulp and gulp plugins to not display colors, even when color support is detected.
--silent
-S
Suppress all gulp logging.
--continue
Continue execution of tasks upon failure.
--series
Run tasks given on the CLI in series (the default is parallel).
--log-level
-L
Set the loglevel. -L for least verbose and -LLLL for most verbose. -LLL is default.
No homepage URL was recorded for gulpjs/gulp-cli in TopGit's last sync. The README tab above frequently contains screenshots and demo links, or check the repository description on GitHub.
How active is development on gulpjs/gulp-cli?
The most recent commit recorded on gulpjs/gulp-cli was 1.2 years ago, based on the GitHub push timestamp. The repository has 111 forks — one of the better signals of community interest.
How many stars does gulpjs/gulp-cli have?
gulpjs/gulp-cli has 408 GitHub stars — refresh the page for the live number, or check github.com/gulpjs/gulp-cli. TopGit mirrors GitHub's count but does not claim minute-by-minute accuracy.
What language is gulpjs/gulp-cli written in?
gulpjs/gulp-cli is written primarily in JavaScript. GitHub's language field is based on the largest share of bytes in the default branch.
What license does gulpjs/gulp-cli use?
gulpjs/gulp-cli is released under the MIT license. Always verify the LICENSE file directly on GitHub for the authoritative terms — license strings can be edited out of sync with a project's actual stance.
What topics is gulpjs/gulp-cli associated with?
GitHub's repository topics for gulpjs/gulp-cli: "cli", "command-line", "gulp", "javascript". TopGit's editorial category is Developer Tools.
Where do I read more about gulpjs/gulp-cli?
This TopGit page is a snapshot — the READ ME tab shows the project's own README content (links stripped, images preserved). The GitHub repository at github.com/gulpjs/gulp-cli is the definitive source.
Read full README in the tab above.
Want a second opinion on gulp-cli?
Ask an AI that can read this page — one click and you get its take on gulp-cli.