Check for duplicates in the stream and filter them or throw an error(evacuated from NSA/Microsoft Github)
anonymous c5fdd06e9e packaging to the correct directory | 6 سال پیش | |
---|---|---|
debian | 6 سال پیش | |
examples | 9 سال پیش | |
lib | 9 سال پیش | |
.editorconfig | 9 سال پیش | |
.gitattributes | 9 سال پیش | |
.gitignore | 10 سال پیش | |
.jshintrc | 10 سال پیش | |
.npmignore | 9 سال پیش | |
.travis.yml | 9 سال پیش | |
index.js | 9 سال پیش | |
license | 9 سال پیش | |
package.json | 9 سال پیش | |
readme.md | 6 سال پیش | |
screenshot-aliases.png | 9 سال پیش | |
screenshot-options.png | 9 سال پیش | |
screenshot.png | 9 سال پیش | |
test.js | 9 سال پیش |
Adds a default help task to gulp and provides the ability to add custom help messages to your gulp tasks
NOTE: this version only works with gulp 3.
Apparently there's a gulp-help
that works with gulp 4, somewhere, please help us find it and
help us get a copy, by creating an issue
Before defining any tasks, add gulp help
to your gulp instance
// gulpfile.js
var gulp = require('gulp-help')(require('gulp'));
Next, define help text for each custom task
// gulpfile.js
gulp.task('lint', 'Lints all server side js', function () {
gulp.src('./lib/**/*.js')
.pipe(jshint());
});
Now show that help via gulp help
Type: string
Type: string | boolean
Custom help message as a string.
If you want to hide the task from the help menu, supply false
gulp.task('task-hidden-from-help', false, function () {
// ...
});
However, if the --all
flag is provided, even these tasks will be shown. (i.e. gulp help --all
)
Type: Array
Type: function
Type: Array
List of aliases for this task
gulp.task('version', 'prints the version.', [], function() {
// ...
}, {
aliases: ['v', 'V']
});
which results in
Type: Object
Object documenting options which can be passed to your task
gulp.task('version', 'prints the version.', [], function () {
// ...
}, {
options: {
'env=prod': 'description of env, perhaps with available values',
'key=val': 'description of key & val',
'key': 'description of key'
}
});
which results in
These are all the options available to be passed to the gulp-help
instance, NOT individual tasks.
description
- modifies the default help messagealiases
- adds aliases to the default help taskhideEmpty
- hide all tasks with no help message defined. Useful when including 3rd party taskshideDepsMessage
- hide all task dependenciesafterPrintCallback
- a function to run after the default help task runsMIT © Chris Montgomery