0.0.1 • Published 10 years ago

gulp-doxdox v0.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
10 years ago

gulp-doxdox

NPM version Build Status Coverage Status Dependency Status

doxdox plugin for gulp

Usage

First, install gulp-doxdox as a development dependency:

npm install --save-dev gulp-doxdox

Then, add it to your gulpfile.js:

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

gulp.src("./src/*.ext")
	.pipe(doxdox({
		msg: "Hello Gulp!"
	}))
	.pipe(gulp.dest("./dist"));

API

doxdox(options)

options.msg

Type: String
Default: Hello World

The message you wish to attach to file.

License

MIT License