forked from Laverna/laverna
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
75 lines (66 loc) · 1.59 KB
/
gulpfile.js
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
'use strict';
var gulp = require('gulp'),
pkg = require('./package.json'),
plugins = require('gulp-load-plugins')();
function getTask(task) {
return require('./gulps/' + task)(gulp, plugins, pkg);
}
// Add Gulp tasks
[
'jshint' , 'jsonlint' , 'mocha' , 'nightwatch',
'less' , 'prism' , 'require' , 'electron' ,
'htmlmin', 'cssmin' , 'htmlManifest',
'copy' , 'copyRelease', 'copyDist' ,
'reload' , 'clean' , 'npm'
]
.forEach(function(task) {
var taskFun = getTask(task);
// It has several tasks
if (typeof taskFun === 'object') {
for (var key in taskFun) {
gulp.task(task + ':' + key, taskFun[key]);
}
return;
}
gulp.task(task, taskFun);
});
gulp.task('release:after', function() {
return gulp.src('./release')
.pipe(plugins.shell([
'cd ./release && zip -r ../release/webapp.zip ./laverna',
]));
});
/**
* Unit tests.
*/
gulp.task('test', ['jsonlint', 'jshint', 'mocha']);
/**
* Build the app.
* ``gulp build --dev`` to build without minifying.
*/
gulp.task('build', plugins.sequence(
'test',
'clean:dist',
'prism',
['less', 'copy', 'require', 'htmlmin', 'cssmin'],
'htmlManifest'
));
/**
* Prepare the release files.
*/
gulp.task('release', plugins.sequence(
'build',
'clean:release',
['copyDist', 'copyRelease'],
'npm:install',
'electron',
'release:after'
));
/**
* Gulp server.
* ``gulp --root dist`` to serve dist folder.
*/
gulp.task('default', plugins.sequence(
['reload:less', 'prism'],
'reload:server'
));