summaryrefslogtreecommitdiffstats
path: root/src/wwwroot/libraries/fomantic/tasks/admin/publish.js
blob: f969e177f2f2e496f434f4b6a01becd06b0b7886 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*******************************
 *         Release All
 *******************************/

/*
 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')
;

/* Release All */
module.exports = function (callback) {

  gulp.series(
    'update distributions', // commit less/css versions to github
    'update components', // commit components to github
  )(callback);

};