github.com/fanux/shipyard@v0.0.0-20161009071005-6515ce223235/controller/static/semantic/tasks/admin/publish.js (about)

     1  /*******************************
     2            Release All
     3  *******************************/
     4  
     5  /*
     6   This task update all SUI individual component repos with new versions of components
     7  
     8    * Commits changes from create components to GitHub and Tags
     9  
    10  */
    11  
    12  var
    13    runSequence = require('run-sequence')
    14  ;
    15  
    16  /* Release All */
    17  module.exports = function(callback) {
    18  
    19    runSequence(
    20      'update distributions', // commit less/css versions to github
    21      'update components', // commit components to github
    22      callback
    23    );
    24  
    25  };