mirror of
https://github.com/Mibew/mibew_slack.git
synced 2024-11-15 08:44:20 +03:00
45 lines
1.2 KiB
JavaScript
45 lines
1.2 KiB
JavaScript
|
var eventStream = require('event-stream'),
|
||
|
gulp = require('gulp'),
|
||
|
chmod = require('gulp-chmod'),
|
||
|
zip = require('gulp-zip'),
|
||
|
tar = require('gulp-tar'),
|
||
|
gzip = require('gulp-gzip'),
|
||
|
rename = require('gulp-rename');
|
||
|
|
||
|
gulp.task('prepare-release', function() {
|
||
|
var version = require('./package.json').version;
|
||
|
|
||
|
return eventStream.merge(
|
||
|
getSources()
|
||
|
.pipe(zip('slack-' + version + '.zip')),
|
||
|
getSources()
|
||
|
.pipe(tar('slack-' + version + '.tar'))
|
||
|
.pipe(gzip())
|
||
|
)
|
||
|
.pipe(chmod(0644))
|
||
|
.pipe(gulp.dest('release'));
|
||
|
});
|
||
|
|
||
|
// Builds and packs plugins sources
|
||
|
gulp.task('default', ['prepare-release'], function() {
|
||
|
// The "default" task is just an alias for "prepare-release" task.
|
||
|
});
|
||
|
|
||
|
/**
|
||
|
* Returns files stream with the plugin sources.
|
||
|
*
|
||
|
* @returns {Object} Stream with VinylFS files.
|
||
|
*/
|
||
|
var getSources = function() {
|
||
|
return gulp.src([
|
||
|
'Plugin.php',
|
||
|
'README.md',
|
||
|
'LICENSE'
|
||
|
],
|
||
|
{base: './'}
|
||
|
)
|
||
|
.pipe(rename(function(path) {
|
||
|
path.dirname = 'Mibew/Mibew/Plugin/Slack/' + path.dirname;
|
||
|
}));
|
||
|
}
|