1.0.1 • Published 8 years ago

gulp-task-menu v1.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
8 years ago

gulp-task-menu

task menu plugin for gulp

Install

npm install gulp-task-menu --save

gulpfile.js

var gulp = require('gulp'),
    menu = require('gulp-task-menu');

gulp.task('default', function (done) {
    /*
     * @param gulp
     * @param ignoreList []
     */
    gulpTaskMenu(this, ['default']);
});

gulp.task('genHTML', function () {});
gulp.task('genJS', function () {});
gulp.task('genController', function () {});
gulp.task('genSQL', function () {});

Usage

First install gulp-task-menu as dependency

npm install gulp-task-menu --save

Then, add it to yout gulpfile.js

var menu = require("gulp-task-menu");

gulp.task('default', function () {
    menu(this, ['default']);
});

gulp.task('genHTML', function () {});
gulp.task('genJS', function () {});
gulp.task('genSQL', function () {});

npm.io