UNPKG

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