forked from auth0/angular-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
108 lines (99 loc) · 2.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
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
var gulp = require('gulp'),
karma = require('karma').server,
concat = require('gulp-concat'),
uglify = require('gulp-uglify'),
rename = require('gulp-rename'),
jshint = require('gulp-jshint'),
ngAnnotate = require('gulp-ng-annotate'),
sourceFiles = [
'src/angularStorage/angularStorage.prefix',
'src/angularStorage/angularStorage.js',
'src/angularStorage/directives/**/*.js',
'src/angularStorage/filters/**/*.js',
'src/angularStorage/services/**/*.js',
'src/angularStorage/angularStorage.suffix'
],
lintFiles = [
'src/angularStorage/**/*.js',
'test/**/*.js',
'gulpfile.js'
];
gulp.task('lint', function() {
return gulp.src(lintFiles)
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'));
});
gulp.task('build', function() {
gulp.src(sourceFiles)
.pipe(concat('angular-storage.js'))
.pipe(ngAnnotate())
.pipe(gulp.dest('./dist/'))
.pipe(uglify())
.pipe(rename('angular-storage.min.js'))
.pipe(gulp.dest('./dist'));
});
/**
* Run test once and exit
*/
gulp.task('test', function (done) {
karma.start({
configFile: __dirname + '/karma-src.conf.js',
singleRun: true
}, done);
});
/**
* Run test once in all available browsers and exit
*/
gulp.task('test-all', function (done) {
karma.start({
configFile: __dirname + '/karma-src-all.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);
});
/**
* Run code coverage tests once and exit
*/
gulp.task('cover', function (done) {
karma.start({
configFile: __dirname + '/karma-src.conf.js',
singleRun: true,
preprocessors: {
'src/**/*.js': 'coverage'
},
coverageReporter: {
type: 'html',
dir: 'reports/coverage'
},
reporters: ['mocha', 'coverage']
}, function() {
console.log('Code coverage report created: %s', require('path').join(process.cwd(), 'reports', 'coverage'));
done();
});
});
gulp.task('default', ['lint', 'test', 'build']);
gulp.task('dist', ['test-dist-concatenated', 'test-dist-minified']);