-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
155 lines (132 loc) · 3.23 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
var gulp = require('gulp');
var clean = require('gulp-clean');
var karma = require('karma').server;
var concat = require('gulp-concat');
var uglify = require('gulp-uglify');
var rename = require('gulp-rename');
var path = require('path');
var plumber = require('gulp-plumber');
var runSequence = require('run-sequence');
var jshint = require('gulp-jshint');
/**
* File patterns
**/
// Root directory
var rootDirectory = path.resolve('./');
// Source directory for build process
var sourceDirectory = path.join(rootDirectory, './src');
var cordovaTest = {
libPath: './cordova-test/www/lib',
libs: [
{
lib: 'angular',
src: [
'./bower_components/angular/angular.js',
'./bower_components/angular-touch/angular-touch.js',
'./bower_components/angular-animate/angular-animate.js',
'./bower_components/angular-aria/angular-aria.js',
'./bower_components/angular-route/angular-route.js'
]
},
'./dist/phonegular.js',
'./bower_components/hammerjs/hammer.js',
{
lib: 'angular-material',
src: [
'./bower_components/angular-material/angular-material.js',
'./bower_components/angular-material/angular-material.css'
]
}
]
};
var sourceFiles = [
// Make sure module files are handled first
path.join(sourceDirectory, '/**/*.module.js'),
// Then add all JavaScript files
path.join(sourceDirectory, '/**/*.js')
];
var lintFiles = [
'gulpfile.js',
// Karma configuration
'karma-*.conf.js'
].concat(sourceFiles);
gulp.task('build', function () {
gulp.src(sourceFiles)
.pipe(plumber())
.pipe(concat('phonegular.js'))
.pipe(gulp.dest('./dist/'))
.pipe(uglify())
.pipe(rename('phonegular.min.js'))
.pipe(gulp.dest('./dist'));
runSequence('prepare-cordova-test');
});
gulp.task('prepare-cordova-test', function () {
gulp.src('./[object Object],.', {read: false}).pipe(clean());
cordovaTest.libs.forEach(function(libData) {
switch (typeof libData) {
case 'string':
gulp.src(libData)
.pipe(gulp.dest(cordovaTest.libPath));
break;
case 'object':
gulp.src(libData.src)
.pipe(gulp.dest(cordovaTest.libPath + '/' + libData.lib));
break;
default:
throw 'Unknown library format.';
}
});
});
/**
* Process
*/
gulp.task('process-all', function (done) {
runSequence('jshint', 'test-src', 'build', done);
});
/**
* Watch task
*/
gulp.task('watch', function () {
// Watch JavaScript files
gulp.watch(sourceFiles, ['process-all']);
});
/**
* Validate source JavaScript
*/
gulp.task('jshint', function () {
return gulp.src(lintFiles)
.pipe(plumber())
.pipe(jshint())
.pipe(jshint.reporter('jshint-stylish'))
.pipe(jshint.reporter('fail'));
});
/**
* Run test once and exit
*/
gulp.task('test-src', function (done) {
karma.start({
configFile: __dirname + '/karma-src.conf.js',
singleRun: 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', function () {
runSequence('process-all', 'watch');
});