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

24 lines
492 B
JavaScript
Raw Normal View History

2017-04-22 19:24:52 +00:00
/*******************************
* Release All
*******************************/
2017-04-22 19:24:52 +00:00
/*
This task update all SUI individual component repos with new versions of components
* Commits changes from create components to GitHub and Tags
*/
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
'update distributions', // commit less/css versions to github
'update components', // commit components to github
)(callback);
2017-04-22 19:24:52 +00:00
};