gulp-groc

0.4.1 • Public • Published

gulp-groc

NPM version Build Status Coverage Status Dependency Status Livereload downloads MIT Licensed

groc plugin for gulp

Usage

First, install gulp-groc as a development dependency:

npm install --save-dev gulp-groc

Then, add it to your gulpfile.js:

var gulp = require('gulp'),
    groc = require("gulp-groc"),
    clean = require('gulp-clean');
 
// clean doc
gulp.task('cleanDoc', function () {
    return gulp
        .src([ 'jsdoc' ], {
            read: false
        })
        .pipe(clean());
});
 
// gulp-groc
gulp.task('doc', [ 'cleanDoc' ], function () {
    return gulp
        .src("./src/scripts/**/*.js")
        .pipe(groc({
            out: 'jsdoc'
        }));
});

API

groc(options)

options

Type: Object Default: {}

There are options supported by groc, if you are interested.

License

MIT License

Copyright (c) 2014 NAVER Corp.

Readme

Keywords

Package Sidebar

Install

npm i gulp-groc

Weekly Downloads

10

Version

0.4.1

License

MIT

Last publish

Collaborators

  • iamdenny