gulp-help-doc
Advanced tools
Comparing version 1.0.3 to 1.0.4
@@ -48,3 +48,5 @@ /** | ||
logger: console, | ||
gulpfile: 'gulpfile.js' | ||
gulpfile: fs.existsSync('gulpfile.ts') ? | ||
'gulpfile.ts' : | ||
'gulpfile.js' | ||
}; | ||
@@ -51,0 +53,0 @@ |
{ | ||
"name": "gulp-help-doc", | ||
"version": "1.0.3", | ||
"version": "1.0.4", | ||
"description": "Gulp available tasks usage information based on jsdoc-like notations", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -101,3 +101,3 @@ # gulp-help-doc | ||
This plugin enables you to use jsDoc-like tags to document your tasks | ||
and make tose task documentation availabe from comman-line as usage | ||
and make those task documentation availabe from command-line as usage | ||
information. | ||
@@ -125,9 +125,7 @@ | ||
is 80 characters long) | ||
* **keysColumnWidth** - max width of the column width tasks or args | ||
* **keysColumnWidth** - max width of the column width tasks/args | ||
names (by default is 20 characters long) | ||
* **padding** - number of empty characters for left-padding of the output | ||
* **logger** - printing engine (by default is console). You may change | ||
it, for example, to gulp-util or some other printing device. It is | ||
expected that logger will have 'logger.log()' function defined which | ||
will do output. | ||
* **logger** - printing engine (by default is console). May be changed | ||
to gulp-util or some other printing device if required. | ||
@@ -134,0 +132,0 @@ Example of custom configuration: |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
291
14793
147