summaryrefslogtreecommitdiffstats
path: root/src/wwwroot/libraries/fomantic/tasks/README.md
blob: c602e222346679981233c063fd5bb2eb086ba5c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
## Tasks

* Watch - Compile only changed files from source
* Build - Build all files from source
* Version - Output version number
* Install - Run Installer to Set-up Paths

## How to use

These tasks can be imported into your own gulpfile allowing you to avoid using Semantic's build tools

```javascript
var
  watch = require('path/to/semantic/tasks/watch')
;
gulp.task('watch ui', watch);
```