2017-04-22 19:24:52 +00:00
|
|
|
/*******************************
|
2022-05-08 14:13:50 +00:00
|
|
|
* Release
|
|
|
|
*******************************/
|
2017-04-22 19:24:52 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
This task update all SUI individual component repos with new versions of components
|
|
|
|
|
|
|
|
* Initializes repositories with current versions
|
|
|
|
* Creates local files at ../distributions/ with each repo for release
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
var
|
2022-05-08 14:13:50 +00:00
|
|
|
gulp = require('gulp')
|
2017-04-22 19:24:52 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
/* Release All */
|
2022-05-08 14:13:50 +00:00
|
|
|
module.exports = function (callback) {
|
2017-04-22 19:24:52 +00:00
|
|
|
|
2022-05-08 14:13:50 +00:00
|
|
|
gulp.series(
|
2017-04-22 19:24:52 +00:00
|
|
|
//'build', // build Semantic
|
|
|
|
'init distributions', // sync with current github version
|
|
|
|
'create distributions', // update each repo with changes from master repo
|
|
|
|
'init components', // sync with current github version
|
|
|
|
'create components', // update each repo
|
2022-05-08 14:13:50 +00:00
|
|
|
)(callback);
|
2017-04-22 19:24:52 +00:00
|
|
|
|
|
|
|
};
|