wishthis/node_modules/fomantic-ui/tasks/collections/README.md

15 lines
336 B
Markdown
Raw Normal View History

2022-01-13 13:00:31 +00:00
## How to use
These are collections of tasks that are imported together.
To import them into gulp:
```javascript
2023-08-17 09:47:40 +00:00
const gulp = require('gulp');
// modified to point to semantic folder
const install = require('tasks/collections/install');
2022-01-13 13:00:31 +00:00
gulp = install(gulp);
// tasks are now injected and ready to be used
gulp.start('install');
2022-06-08 10:36:39 +00:00
```