wishthis/semantic/tasks/admin/release.js

25 lines
726 B
JavaScript
Raw Normal View History

2022-01-13 13:00:31 +00:00
/*******************************
* Release
*******************************/
/*
This task update all SUI individual component repos with new versions of components
* Initializes repositories with current versions
* Creates local files at ../distributions/ with each repo for release
*/
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(
// 'build', // build Fomantic
'init distributions', // sync with current github version
'create distributions', // update each repo with changes from master repo
'init components', // sync with current github version
'create components' // update each repo
)(callback);
2022-08-05 09:25:53 +00:00
};