github.com/fanux/shipyard@v0.0.0-20161009071005-6515ce223235/controller/static/semantic/tasks/collections/README.md (about)

     1  ## How to use
     2  
     3  These are collections of tasks that are imported together.
     4  
     5  To import them into gulp:
     6  ```javascript
     7  var
     8    gulp    = require('gulp'),
     9    // modified to point to semantic folder
    10    install = require('tasks/collections/install')
    11  ;
    12  gulp = install(gulp);
    13  
    14  // tasks are now injected and ready to be used
    15  gulp.start('install');
    16  ```