/gulp-puml

Renders PlantUML to SVG

Primary LanguageJavaScriptMIT LicenseMIT

gulp-puml

Build Status

PlantUML rendering Gulp plugin.

Install

$ npm i -D gulp-puml

Usage

var gulp = require('gulp');
var puml = require('gulp-puml');

gulp.task('default', function () {
	return gulp.src('doc/puml/**/*.puml')
		.pipe(puml())
		.pipe(gulp.dest('doc/img/'));
});

API

puml(options)

options

format

Type: string Default: svg

Format of output files. Currently only svg format supported.

License

MIT © bondden 2015