github.com/fanux/shipyard@v0.0.0-20161009071005-6515ce223235/controller/static/semantic/tasks/admin/release.js (about) 1 /******************************* 2 Release 3 *******************************/ 4 5 /* 6 This task update all SUI individual component repos with new versions of components 7 8 * Initializes repositories with current versions 9 * Creates local files at ../distributions/ with each repo for release 10 11 */ 12 13 var 14 runSequence = require('run-sequence') 15 ; 16 17 /* Release All */ 18 module.exports = function(callback) { 19 20 runSequence( 21 //'build', // build Semantic 22 'init distributions', // sync with current github version 23 'create distributions', // update each repo with changes from master repo 24 'init components', // sync with current github version 25 'create components', // update each repo 26 callback 27 ); 28 29 };