mirror of
https://github.com/Mibew/button-refresh-plugin.git
synced 2024-11-15 00:34:18 +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('button-refresh-plugin-' + version + '.zip')),
|
|
getSources()
|
|
.pipe(tar('button-refresh-plugin-' + version + '.tar'))
|
|
.pipe(gzip())
|
|
)
|
|
.pipe(chmod(644))
|
|
.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/ButtonRefresh/' + path.dirname;
|
|
}));
|
|
}
|