github.com/fanux/shipyard@v0.0.0-20161009071005-6515ce223235/controller/static/semantic/tasks/README.md (about) 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 10 These tasks can be imported into your own gulpfile allowing you to avoid using Semantic's build tools 11 12 ```javascript 13 var 14 watch = require('path/to/semantic/tasks/watch') 15 ; 16 gulp.task('watch ui', 'Watch Semantic UI', watch)); 17 ```