You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
396 B

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