release.js 704 B

12345678910111213141516171819202122232425262728
  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. gulp = require('gulp')
  11. ;
  12. /* Release All */
  13. module.exports = function (callback) {
  14. gulp.series(
  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. };