wishthis/semantic/tasks/admin/publish.js

21 lines
501 B
JavaScript
Raw Normal View History

2022-01-13 13:00:31 +00:00
/*******************************
* Release All
*******************************/
/*
This task update all SUI individual component repos with new versions of components
* Commits changes from create components to GitHub and Tags
*/
2023-08-17 09:47:40 +00:00
const gulp = require('gulp');
2022-01-13 13:00:31 +00:00
/* Release All */
module.exports = function (callback) {
2023-08-17 09:47:40 +00:00
gulp.series(
'update distributions', // commit less/css versions to github
'update components' // commit components to github
)(callback);
2022-08-05 09:25:53 +00:00
};