1.0.4 • Published 9 years ago

gulp-brace-tags v1.0.4

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

Gulp Brace Tags

Brace Tags Gulp plugin (wrapper for command line brace-tags).

Note: Not being maintained as Brace is gone.

Install

Make sure you have installed brace-tags

sudo easy_install brace-tags

Install the plugin

npm install gulp-brace-tags --save-dev

Usage

var braceTags = require('gulp-brace-tags');

gulp.task('braceTags',function() {
  gulp.src("./source/styleguide/html/")
    .pipe(braceTags('/usr/local/bin/tags', {
      out     : './dist/styleguide/',
      debug   : false
    }))
});