Gulp
Description
Task to process gulp, a build system automating task (see: gulpjs.com).
Installation
                    Please install:
                    
                    $ npm install -g gulp
                  
Gulp task parameters
| Attribute | Description | Value | Required | 
|---|---|---|---|
| file | the gulp file | yes | |
| target | gulp <target> | no | 
Examples
<project name="gulp task"> 
  <taskdef name="gulp" 
     classname="net.sourceforge.ant4x.taskdefs.javascript.GulpTask" 
     classpath="PATH/TO/ant4x.jar"/> 
  <target name="gulp"> 
    <!-- run default target -->
  <gulp file="gulpfile.js"/>
  
  <!-- run specific target -->
  <gulp file="gulpfile.js" target="someSpecificTask"/>
  </target>
                    </project>  
                  