-
Notifications
You must be signed in to change notification settings - Fork 3
/
gulpfile.js
74 lines (62 loc) · 1.57 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
'use strict';
var gulp = require('gulp');
var yuidoc = require('gulp-yuidoc');
var rename = require('gulp-rename');
var uglify = require('gulp-uglify');
var webserver = require('gulp-webserver');
var jshint = require('gulp-jshint');
var watch = require('gulp-watch');
var karma = require('karma').server;
gulp.task('tests', function () {
karma.start({
configFile: __dirname + '/testing/karma.conf.js',
singleRun: true
});
});
gulp.task('sw-tests', function () {
karma.start({
configFile: __dirname + '/testing/karma-sw.conf.js',
singleRun: true
});
});
gulp.task('dist', function() {
[
'offliner-client.js',
'offliner.js'
].forEach(function (source) {
var path = 'src/' + source;
gulp.src(path)
.pipe(uglify())
.pipe(rename(minName(source)))
.pipe(gulp.dest('./dist'));
gulp.src(path)
.pipe(gulp.dest('./dist'));
});
function minName(path) {
var tokens = path.split('.');
tokens.splice(tokens.length - 1, 0, 'min');
return tokens.join('.');
}
});
gulp.task('docs', function() {
gulp.src('./src/*.js')
.pipe(yuidoc())
.pipe(gulp.dest('./docs'));
});
gulp.task('webserver', function() {
gulp.src('.')
.pipe(webserver({
livereload: true,
directoryListing: true,
open: true
}));
});
gulp.task('watch', function() {
gulp.watch('./src/*', ['lint', 'docs', 'dist']);
});
gulp.task('lint', function() {
return gulp.src(['./src/*.js'])
.pipe(jshint())
.pipe(jshint.reporter('default'));
});
gulp.task('default', ['lint','docs','dist']);