cacert-boardvoting/ui/semantic/tasks/admin/release.js

28 lines
704 B
JavaScript
Raw Normal View History

2017-04-22 19:24:52 +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
gulp = require('gulp')
2017-04-22 19:24:52 +00:00
;
/* Release All */
module.exports = function (callback) {
2017-04-22 19:24:52 +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
)(callback);
2017-04-22 19:24:52 +00:00
};