
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
gulp-task-help
Advanced tools
Provides a gulp task that will display a help message describing the tasks as well as their dependencies and arguments.
Provides a gulp task that will display a help message describing the tasks as well as their dependencies and arguments.
npm i --save-dev gulp-task-help
var Help = require('gulp-task-help');
// create the help task instance
const help = new Help(
'Project Title',
'Project Description
);
// register each argument
help.registerArgument(
'arg-name', 'Argument description', 'default value'
);
help.registerTask(
'task:name',
'Task description',
['task:dependency'],
['argument-name']
);
// register the task
gulp.task('help', help.helpTask);
new Help(title, description)
Argument Name | Type | Description |
---|---|---|
title | string | Generally the title of the application |
description | string | A description of the application or the build system |
registerTask(taskName, description, dependencies, args)
Argument Name | Type | Description | Default |
---|---|---|---|
taskName | string | The name of the task as registered with gulp | |
description | string | The description of the tasks | |
dependencies | string[] | A list of dependant task nams | [] |
args | string[] | A list of argument names | [] |
registerArgument(argumentName, description, defaultValue)
Argument Name | Type | Description |
---|---|---|
argumentName | string | The name of the argument |
description | string | The description of the argument |
defaultValue | string | A default value, or description of the default value |
Gulp Task Help is released under the ISC license. See LICENSE.
FAQs
Provides a gulp task that will display a help message describing the tasks as well as their dependencies and arguments.
The npm package gulp-task-help receives a total of 0 weekly downloads. As such, gulp-task-help popularity was classified as not popular.
We found that gulp-task-help 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
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.