Socket
Socket
Sign inDemoInstall

gulp-cli

Package Overview
Dependencies
211
Maintainers
3
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-cli

Command line interface for gulp


Version published
Maintainers
3
Install size
4.83 MB
Created

Changelog

Source

3.0.0 (2024-03-24)

⚠ BREAKING CHANGES

  • Only allow js variants for .gulp config files (#261)
  • Upgrade to Liftoff v5 and avoid merging flags/config/env (#259)
  • Remove support for alpha versions of gulp 4 (#255)
  • Remove --verify flag (#251)
  • Replace --require flag with --preload
  • Normalize repository, dropping node <10.13 support (#239)

Features

  • Add deprecated warning for gulplog v1 messages (#266) (affeda9)
  • Add versioned handler for gulp v5 (#265) (f06ff30)
  • Support theming and translations via config files (#260) (e16d675)
  • Upgrade to Liftoff v5 and avoid merging flags/config/env (#259) (ed86da7)

Bug Fixes

  • Ensure the logger is wired up before running liftoff (#258) (36f05d5)

Miscellaneous Chores

  • Normalize repository, dropping node <10.13 support (#239) (3544dc6)
  • Only allow js variants for .gulp config files (#261) (e5c7983)
  • Remove --verify flag (#251) (7aeee5d)
  • Remove support for alpha versions of gulp 4 (#255) (cb03b9a)
  • Replace --require flag with --preload (3544dc6)

Readme

Source

gulp-cli

NPM version Downloads Build Status AppVeyor Build Status Coveralls Status Gitter chat

Command Line Utility for Gulp

Usage

> gulp [flags] <task> <task>...

Custom Metadata

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 languages at https://github.com/js-cli/js-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.json, .gulp.yml). You can find a list of supported languages at https://github.com/js-cli/js-interpret.

Configuration from the home directory (~) and current working directory (cwd) are merged with cwd taking precedence.

Supported configurations properties:

PropertyDescription
descriptionTop-level description of the project/gulpfile (Replaces "Tasks for ~/path/of/gulpfile.js")
flags.continueContinue execution of tasks upon failure by default.
flags.compactTasksReduce the output of task dependency tree by default.
flags.tasksDepthSet default depth of task dependency tree.
flags.gulpfileSet a default gulpfile
flags.silentSilence logging by default
flags.seriesRun tasks given on the CLI in series (the default is parallel)
flags.requireAn array of modules to require before running the gulpfile. Any relative paths will be resolved against the --cwd directory (if you don't want that behavior, use absolute paths)
flags.nodeFlagsAn 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

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.

FlagShort FlagDescription
--help-hShow this help.
--version-vPrint the global and local gulp versions.
--require [path]Will require a module before running the gulpfile. This is useful for transpilers but also has other applications.
--gulpfile [path]-fManually 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 requires (including the `--require` flag) will be from here.
--verify [path (optional)]Will verify plugins referenced in project's package.json against the plugins blacklist.
--tasks-TPrint the task dependency tree for the loaded gulpfile.
--tasks-simplePrint 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-tasksReduce 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-tasksWill sort top tasks of task dependency tree. This flag can be used with --tasks.
--colorWill force gulp and gulp plugins to display colors, even when no color support is detected.
--no-colorWill force gulp and gulp plugins to not display colors, even when color support is detected.
--silent-SSuppress all gulp logging.
--continueContinue execution of tasks upon failure.
--seriesRun tasks given on the CLI in series (the default is parallel).
--log-level-LSet the loglevel. -L for least verbose and -LLLL for most verbose. -LLL is default.

License

MIT

Keywords

FAQs

Last updated on 04 Jun 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc