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.
26 lines
559 B
26 lines
559 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
|
|
'create components', // create each component repo
|
|
'update component repos' // update component repos on github
|
|
);
|
|
|
|
};
|