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.

25 lines
559 B

  1. /*******************************
  2. Release All
  3. *******************************/
  4. /*
  5. This task update all SUI individual component repos with new versions of components
  6. * Creates local files at ../components/ with each repo for release
  7. * Syncs each component with GitHub
  8. */
  9. var
  10. runSequence = require('run-sequence')
  11. ;
  12. /* Release All */
  13. module.exports = function() {
  14. runSequence(
  15. 'build', // build Semantic
  16. 'create components', // create each component repo
  17. 'update component repos' // update component repos on github
  18. );
  19. };