JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 25
  • Score
    100M100P100Q55203F

Gulp plugin for Verb, the zero-configuration markdown docs generator for Node.js.

Package Exports

  • gulp-verb

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gulp-verb) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

gulp-verb NPM version

gulp plugin for Verb

  • Get verb-cli to use Verb from the command line
  • Get generator-verb to add documentation templates, or initialize docs for new projects
  • Get grunt-verb for your Grunt build-chain.

Install

npm

npm i gulp-verb --save-dev

Usage

Add verb to your gulpfile.js:

var verb = require("gulp-verb");

gulp.task('verb', function () {
  gulp.src(['.verbrc.md'])
    // dest filename is defined in options,
    // otherwise gulp will overwrite .verbrc.md
    .pipe(verb({dest: 'README.md'}))
    .pipe(gulp.dest('./'));
});

Authors

Jon Schlinkert

Brian Woodward

License

Copyright (c) 2014 Brian Woodward, contributors.
Released under the MIT license


This file was generated by gulp-verb on July 09, 2014.