-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathgulpfile.js
151 lines (122 loc) · 2.94 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/*
* This file is part of Invenio.
* Copyright (C) 2015-2018 CERN.
*
* Invenio is free software; you can redistribute it and/or modify it
* under the terms of the MIT License; see LICENSE file for more details.
*/
var gulp = require('gulp');
var del = require('del');
var fs = require('fs');
var karma = require('karma').server;
var path = require('path');
var plugins = require('gulp-load-plugins')();
var runSequence = require('run-sequence');
/**
* File patterns
**/
// Root directory
var rootDirectory = path.resolve('./');
// Source directory for build process
var sourceDirectory = path.join(rootDirectory, './src');
var sourceFiles = [
// Make sure module files are handled first
path.join(sourceDirectory, '/**/*.js'),
// Then add all JavaScript files
path.join(sourceDirectory, '/**/*.js'),
];
var templates = [
path.join(sourceDirectory, '/**/templates/**/*.html')
];
// Get licenses
var licences = {
'javascript': fs.readFileSync(path.join(rootDirectory, '.license'), 'utf8')
};
var lintFiles = [
'gulpfile.js',
// Karma configuration
'karma-*.conf.js'
].concat(sourceFiles);
/**
* Build
*/
// run all the build tasks
gulp.task('build', ['clean.build'], function (done) {
runSequence(
'build.src', 'build.templates', done
);
});
// build the javascript files
gulp.task('build.src', function() {
gulp.src(sourceFiles)
.pipe(plugins.plumber())
.pipe(plugins.concat('invenio-search-js.js'))
.pipe(gulp.dest('./dist/'))
.pipe(plugins.uglify())
.pipe(plugins.rename('invenio-search-js.min.js'))
.pipe(plugins.header(licences.javascript))
.pipe(gulp.dest('./dist'));
});
// move the templates to dist
gulp.task('build.templates', function() {
gulp.src(templates)
.pipe(plugins.flatten())
.pipe(gulp.dest('./dist/templates'));
});
/**
* Tests
*/
// Run test once and exit
gulp.task('test', function (done) {
runSequence('test.jshint', 'test.src', done);
});
// check jshint
gulp.task('test.jshint', function () {
return gulp.src(lintFiles)
.pipe(plugins.plumber())
.pipe(plugins.jshint())
.pipe(plugins.jshint.reporter('jshint-stylish'))
.pipe(plugins.jshint.reporter('fail'));
});
// test sources
gulp.task('test.src', function (done) {
karma.start({
configFile: __dirname + '/karma-src.conf.js',
singleRun: true
}, done);
});
// coveralls
gulp.task('coveralls', function () {
return gulp.src('coverage/**/lcov.info')
.pipe(plugins.coveralls());
});
/**
* Demo
*/
gulp.task('demo', function() {
gulp.src(rootDirectory)
.pipe(plugins.webserver({
livereload: true,
open: '/examples/index.html'
}));
});
/**
* Clean tasks
*/
// Clean build directory if exists
gulp.task('clean.build', function() {
return del(['build']);
});
/**
* Watch
*/
gulp.task('watch', function () {
// Watch JavaScript files
gulp.watch(sourceFiles, ['test']);
});
/**
* Default taks
*/
gulp.task('default', function () {
runSequence('test', 'watch');
});