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.

28 lines
719 B

9 years ago
  1. /*******************************
  2. Release
  3. *******************************/
  4. /*
  5. This task update all SUI individual component repos with new versions of components
  6. * Initializes repositories with current versions
  7. * Creates local files at ../distributions/ with each repo for release
  8. */
  9. var
  10. runSequence = require('run-sequence')
  11. ;
  12. /* Release All */
  13. module.exports = function(callback) {
  14. runSequence(
  15. //'build', // build Semantic
  16. 'init distributions', // sync with current github version
  17. 'create distributions', // update each repo with changes from master repo
  18. 'init components', // sync with current github version
  19. 'create components', // update each repo
  20. callback
  21. );
  22. };