-
Notifications
You must be signed in to change notification settings - Fork 44
/
gulpfile.js
108 lines (94 loc) · 2.61 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
'use strict';
var gulp = require('gulp'),
clean = require('gulp-clean'),
path = require('path'),
Server = require('karma').Server,
concat = require('gulp-concat'),
templateCache = require('gulp-angular-templatecache'),
uglify = require('gulp-uglify'),
rename = require('gulp-rename'),
ngAnnotate = require('gulp-ng-annotate'),
browserSync = require('browser-sync'),
coveralls = require('gulp-coveralls'),
shell = require('gulp-shell'),
bump = require('gulp-bump'),
frep = require('gulp-frep');
var nextLinePattern = [
{
pattern: /\\r\\n/g,
replacement: '\\n'
},
{
pattern: /\\n/g,
replacement: ''
},
{
pattern: /\\t/g,
replacement: ''
}
];
// Use the gulp-angular-templatecache in order to create JS file of HTML templates to
// make it easier to use in AngularJS directive
gulp.task('templates', function () {
return gulp.src('src/**/*.html')
.pipe(templateCache('templates.tmp',
{
module: 'hm.readmore'
}
))
.pipe(frep(nextLinePattern))
.pipe(gulp.dest('.'));
});
gulp.task('concat', ['templates'], function () {
return gulp.src(['./src/readmore.js', 'templates.tmp'])
.pipe(concat('readmore.js'))
.pipe(ngAnnotate())
.pipe(gulp.dest('./dist/'));
});
gulp.task('clean', ['concat'], function () {
gulp.src('./*.tmp', {read: false})
.pipe(clean());
});
gulp.task('compress', ['concat'], function () {
return gulp.src('dist/readmore.js')
.pipe(uglify())
.pipe(rename({
extname: '.min.js'
}))
.pipe(gulp.dest('./dist/'));
});
gulp.task('build', ['templates', 'concat', 'compress', 'clean']);
gulp.task('karma', ['build'], function (done) {
new Server({
configFile: path.join(__dirname, '/karma.conf.js'),
singleRun: true
}, done).start();
});
gulp.task('coveralls', ['karma'], function () { // 2nd arg is a dependency: 'karma' must be finished first.
// Send results of istanbul's test coverage to coveralls.io.
return gulp.src('gulpfile.js', {read: false}) // You have to give it a file, but you don't have to read it.
.pipe(shell('cat coverage/report-lcov/lcov.info | node_modules/coveralls/bin/coveralls.js'));
});
gulp.task('test', ['karma', 'coveralls']);
gulp.task('browser-sync', function () {
browserSync.init(
['./dist/*.*', './example/*.*'], {
server: {
baseDir: ['example'],
routes: {
'/bower_components': 'bower_components',
'/dist': 'dist'
}
},
port: 8080
});
});
gulp.task('watch', ['build', 'browser-sync'], function () {
gulp.watch('src/**/*.*', ['build']);
});
// Update bower, component, npm at once:
gulp.task('bump', function () {
gulp.src(['./bower.json', './package.json'])
.pipe(bump())
.pipe(gulp.dest('./'));
});