UNPKG

396 BMarkdownView Raw
1## Tasks
2
3* Watch - Compile only changed files from source
4* Build - Build all files from source
5* Version - Output version number
6* Install - Run Installer to Set-up Paths
7
8## How to use
9
10These tasks can be imported into your own gulpfile allowing you to avoid using Semantic's build tools
11
12```javascript
13var
14 watch = require('path/to/semantic/tasks/watch')
15;
16gulp.task('watch ui', watch);
17```