UNPKG

704 BJavaScriptView Raw
1/*******************************
2 * Release
3 *******************************/
4
5/*
6 This task update all SUI individual component repos with new versions of components
7
8 * Initializes repositories with current versions
9 * Creates local files at ../distributions/ with each repo for release
10
11*/
12
13var
14 gulp = require('gulp')
15;
16
17/* Release All */
18module.exports = function (callback) {
19
20 gulp.series(
21 //'build', // build Semantic
22 'init distributions', // sync with current github version
23 'create distributions', // update each repo with changes from master repo
24 'init components', // sync with current github version
25 'create components', // update each repo
26 )(callback);
27
28};
\No newline at end of file