You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
337 B

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