-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgulpfile.js
More file actions
executable file
·51 lines (47 loc) · 1.41 KB
/
gulpfile.js
File metadata and controls
executable file
·51 lines (47 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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('wurrd-auth-api-plugin-' + version + '.zip')),
getSources()
.pipe(tar('wurrd-auth-api-plugin-' + 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([
'Constants.php',
'database_schema.yml',
'routing.yml',
'Plugin.php',
'WurrdInstaller.php',
'README.md',
'LICENSE',
'Classes/*',
'Controller/*',
'Model/*'
],
{base: './'}
)
.pipe(rename(function(path) {
path.dirname = 'Wurrd/Mibew/Plugin/AuthAPI/' + path.dirname;
}));
}