UNPKG

492 BJavaScriptView Raw
1/*******************************
2 * Release All
3 *******************************/
4
5/*
6 This task update all SUI individual component repos with new versions of components
7
8 * Commits changes from create components to GitHub and Tags
9
10*/
11
12var
13 gulp = require('gulp')
14;
15
16/* Release All */
17module.exports = function (callback) {
18
19 gulp.series(
20 'update distributions', // commit less/css versions to github
21 'update components', // commit components to github
22 )(callback);
23
24};
\No newline at end of file