forked from PatrickJS/angular-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
59 lines (53 loc) · 1.41 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
var gulp = require('gulp'),
karma = require('karma').server,
concat = require('gulp-concat'),
uglify = require('gulp-uglify'),
rename = require('gulp-rename'),
ngAnnotate = require('gulp-ng-annotate'),
inject = require('gulp-inject-string')
gulp.task('build', function() {
gulp.src('src/angularJwt/**/*.js')
.pipe(concat('angular-jwt.js'))
.pipe(inject.wrap('(function() {\n\n\n', '\n}());'))
.pipe(ngAnnotate())
.pipe(gulp.dest('./dist/'))
.pipe(uglify())
.pipe(rename('angular-jwt.min.js'))
.pipe(gulp.dest('./dist'))
});
/**
* Run test once and exit
*/
gulp.task('test-src', function (done) {
karma.start({
configFile: __dirname + '/karma-src.conf.js',
singleRun: true
}, done);
});
gulp.task('test-debug', function (done) {
karma.start({
configFile: __dirname + '/karma-src.conf.js',
singleRun: false,
autoWatch: true
}, done);
});
/**
* Run test once and exit
*/
gulp.task('test-dist-concatenated', function (done) {
karma.start({
configFile: __dirname + '/karma-dist-concatenated.conf.js',
singleRun: true
}, done);
});
/**
* Run test once and exit
*/
gulp.task('test-dist-minified', function (done) {
karma.start({
configFile: __dirname + '/karma-dist-minified.conf.js',
singleRun: true
}, done);
});
gulp.task('default', ['test-src', 'build']);
gulp.task('dist', ['test-dist-minified', 'test-dist-concatenated']);