-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
91 lines (81 loc) · 2.25 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
var gulp = require('gulp');
// var ngAnnotate = require('gulp-ng-annotate');
var uglify = require('gulp-uglify');
var jshint = require('gulp-jshint');
var rename = require('gulp-rename');
var header = require('gulp-header');
var templateCache = require('gulp-angular-templatecache');
var minifyHtml = require('gulp-minify-html');
var concat = require('gulp-concat');
var addsrc = require('gulp-add-src');
var order = require('gulp-order');
var del = require('del');
var Server = require('karma').Server;
var pkg = require('./package.json');
var banner = ['/**',
' * <%= pkg.name %> - <%= pkg.description %>',
' * @author <%= pkg.author %>',
' * @version v<%= pkg.version %>',
' * @link <%= pkg.homepage %>',
' * @license <%= pkg.license %>',
' */',
''].join('\n');
// ====== Templates
gulp.task('templates', function () {
gulp.
src(['*.html'], {cwd: 'src'}).
pipe(minifyHtml({
empty: true,
spare: true,
quotes: true
})).
pipe(templateCache({
module: 'angularjsNotify',
})).
pipe(rename('angularjs-notify.templates.js')).
pipe(gulp.dest('build'));
});
gulp.task('service', function () {
gulp.
src(['src/angularjs-notify.js']).
pipe(jshint()).
pipe(jshint.reporter('default')).
pipe(jshint.reporter('fail')).
// .pipe(ngAnnotate()).
pipe(addsrc('build/*.js')).
pipe(order([
'src/angularjs-notify.js',
'build/angularjs-notify.templates.js'
])).
pipe(concat('angularjs-notify.js')).
pipe(header(banner, { pkg: pkg })).
pipe(gulp.dest('dist')).
pipe(uglify()).
pipe(rename({
suffix: '.min'
})).
pipe(header(banner, { pkg: pkg })).
pipe(gulp.dest('dist')).
pipe(gulp.dest('examples'));
});
// Run test once and exit
gulp.task('test', function (done) {
server = new Server({
configFile: __dirname + '/karma.conf.js',
singleRun: true
}, done);
server.start();
});
// Watch for file changes and re-run tests on each change
gulp.task('tdd', function (done) {
server = new Server({
configFile: __dirname + '/karma.conf.js'
}, done);
server.start();
});
gulp.task('clean', function (cb) {
del(['build'], cb);
});
gulp.task('build', ['templates', 'service']);
gulp.task('deploy', ['test', 'build']);
gulp.task('default', ['clean', 'deploy']);