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
631 B

/*******************************
Release All
*******************************/
/*
This task update all SUI individual component repos with new versions of components
* Creates local files at ../components/ with each repo for release
* Syncs each component with GitHub
*/
var
runSequence = require('run-sequence')
;
/* Release All */
module.exports = function() {
runSequence(
//'build', // build Semantic
'init components', // create each component repo
'create components', // create each component repo
'update components', // update component repos on github
'register repos'
);
};