From 0f14312d7b779ab8a4d450bb6d88835a14d46e76 Mon Sep 17 00:00:00 2001 From: Diga Widyaprana Date: Fri, 4 Mar 2016 18:26:30 +0800 Subject: [PATCH] Add gulp help Work was done by @YijinL in 2 separate commits (@9204125 and @05ad308) --- gulpfile.js | 3 +++ package.json | 1 + 2 files changed, 4 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 3574c28231..9e83181f2a 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -2,6 +2,9 @@ var gulp = require('gulp'); var mocha = require('gulp-mocha'); var babel = require("gulp-babel"); var istanbul = require('gulp-istanbul'); +var help = require('gulp-task-listing'); + +gulp.task('help', help); // By default, individual js files are transformed by babel and exported to /dist gulp.task("default", function () { diff --git a/package.json b/package.json index e82de736f8..4dba69e415 100644 --- a/package.json +++ b/package.json @@ -35,6 +35,7 @@ "gulp-babel": "6.1.1", "gulp-istanbul": "0.10.3", "gulp-mocha": "2.2.0", + "gulp-task-listing": "1.0.1", "istanbul": "0.4.1", "mocha": "2.3.4", "superagent": "1.6.1",