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.

15 lines
414 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 watch = require('path/to/semantic/tasks/watch');
  10. gulp.task('watch ui', 'Watch Semantic UI', watch);
  11. ```