Update Semantic
Fixes #40,#24
This commit is contained in:
parent
1715f27f44
commit
2027b94179
621 changed files with 172488 additions and 15939 deletions
16
web/semantic/tasks/collections/README.md
Normal file
16
web/semantic/tasks/collections/README.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
## How to use
|
||||
|
||||
These are collections of tasks that are imported together.
|
||||
|
||||
To import them into gulp:
|
||||
```javascript
|
||||
var
|
||||
gulp = require('gulp'),
|
||||
// modified to point to semantic folder
|
||||
install = require('tasks/collections/install')
|
||||
;
|
||||
gulp = install(gulp);
|
||||
|
||||
// tasks are now injected and ready to be used
|
||||
gulp.start('install');
|
||||
```
|
Reference in a new issue