Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-hint

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-hint

A stupid help generator based on gulpfile comments

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12
decreased by-45.45%
Maintainers
1
Weekly downloads
 
Created
Source

Gulp-hint

Just a script that parses gulpfile.js based on pretty stupid regexes.

Usage

You add a gulp task:

var gulp_hint = require('gulp-hint');
gulp.task('help', gulp_hint.getHelp);

And then add comments (single-line ones!) before gulp.task definitions:

This uses no AST parser and may be buggy, tho fits my needs perfectly

// Parse HTML templates
gulp.task('html', function () {
  gulp.src("./source/*.html")
    .pipe(mustache(require('./source/variables.js'), {
      extension: '.html'
    }))
    .pipe(gulp.dest("./result"));
});

And then, when you run gulp help, you will get something like this in your console:

html    Parse HTML templates

More

More description to come.

FAQs

Package last updated on 08 Jan 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc