You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
598 B
31 lines
598 B
/*******************************
|
|
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
|
|
|
|
*/
|
|
|
|
var
|
|
gulp = require('gulp')
|
|
;
|
|
|
|
/* Release All */
|
|
module.exports = function(callback) {
|
|
|
|
gulp.task('release', gulp.series(
|
|
'init distributions',
|
|
'create distributions',
|
|
'init components',
|
|
'create components',
|
|
function(done) {
|
|
callback();
|
|
done();
|
|
}
|
|
));
|
|
|
|
};
|