forked from Cloud-CV/EvalAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
412 lines (347 loc) · 14.2 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
// Gulp Tasks
'use strict';
var gulp = require('gulp'),
runSequence = require('run-sequence'),
debug = require('gulp-debug'),
merge = require('merge-stream'),
sass = require('gulp-ruby-sass'),
autoprefixer = require('gulp-autoprefixer'),
cssnano = require('gulp-cssnano'),
eslint = require('gulp-eslint'),
angularPlugin = require('eslint-plugin-angular'),
gulp_if = require('gulp-if'),
uglify = require('gulp-uglify'),
imagemin = require('gulp-imagemin'),
rename = require('gulp-rename'),
concat = require('gulp-concat'),
notify = require('gulp-notify'),
cache = require('gulp-cache'),
livereload = require('gulp-livereload'),
del = require('del'),
connect = require('gulp-connect'),
htmlmin = require('gulp-html-minifier'),
fs = require('fs'),
connectModRewrite = require('connect-modrewrite'),
ngConfig = require('gulp-ng-config'),
prettyError = require('gulp-prettyerror'),
path = require('path'),
inject = require('gulp-inject'),
_ = require('lodash'),
Server = require('karma').Server;
var scripts = require('./frontend/app.scripts.json');
var styles = require('./frontend/app.styles.json');
//include all bower scripts files
gulp.task('vendorjs', function() {
_.forIn(scripts.chunks, function(chunkScripts, chunkName) {
var paths = [];
chunkScripts.forEach(function(script) {
var scriptFileName = scripts.paths[script];
if (!fs.existsSync(__dirname + '/' + scriptFileName)) {
throw console.error('Required path doesn\'t exist: ' + __dirname + '/' + scriptFileName, script)
}
paths.push(scriptFileName);
});
gulp.src(paths)
.pipe(concat(chunkName + '.js'))
//.on('error', swallowError)
.pipe(gulp.dest("frontend/dist/vendors"))
.pipe(gulp.watch(paths).on('change', function(event) {
if (event.type == 'deleted') {
var filePathFromSrc = path.relative(path.resolve(paths), event.path);
var destFilePath = path.resolve('frontend/dist/vendors', filePathFromSrc);
del.sync(destFilePath);
}
}))
})
});
//include all bower styles files
gulp.task('vendorcss', function() {
_.forIn(styles.chunks, function(chunkStyles, chunkName) {
var paths = [];
chunkStyles.forEach(function(style) {
var styleFileName = styles.paths[style];
if (!fs.existsSync(__dirname + '/' + styleFileName)) {
throw console.error('Required path doesn\'t exist: ' + __dirname + '/' + styleFileName, style)
}
paths.push(styleFileName);
});
gulp.src(paths)
.pipe(concat(chunkName + '.css'))
//.on('error', swallowError)
.pipe(gulp.dest("frontend/dist/vendors"))
.pipe(gulp.watch(paths).on('change', function(event) {
if (event.type == 'deleted') {
var filePathFromSrc = path.relative(path.resolve(paths), event.path);
var destFilePath = path.resolve('frontend/dist/vendors', filePathFromSrc);
del.sync(destFilePath);
}
}))
})
});
// minify and compress CSS files
gulp.task('css', function() {
return sass('frontend/src/css/main.scss', { style: 'expanded' })
.pipe(prettyError())
.pipe(autoprefixer('last 2 version'))
.pipe(gulp_if(flags.production, rename({ suffix: '.min' })))
.pipe(gulp_if(flags.production, cssnano()))
.pipe(gulp.dest('frontend/dist/css'));
})
// minify angular scripts
gulp.task('js', function() {
var app = gulp.src('frontend/src/js/app.js')
.pipe(prettyError())
.pipe(concat('app.js'))
.pipe(gulp_if(flags.production, rename({ suffix: '.min' })))
.pipe(gulp_if(flags.production, uglify()))
.pipe(gulp.dest('frontend/dist/js'));
var configs = gulp.src('frontend/src/js/route-config/*.js')
.pipe(prettyError())
.pipe(concat('route-config.js'))
.pipe(gulp_if(flags.production, rename({ suffix: '.min' })))
.pipe(gulp_if(flags.production, uglify()))
.pipe(gulp.dest('frontend/dist/js'));
var controllers = gulp.src('frontend/src/js/controllers/*.js')
.pipe(prettyError())
.pipe(concat('controllers.js'))
.pipe(gulp_if(flags.production, rename({ suffix: '.min' })))
.pipe(gulp_if(flags.production, uglify()))
.pipe(gulp.dest('frontend/dist/js'));
var directives = gulp.src('frontend/src/js/directives/*.js')
.pipe(prettyError())
.pipe(concat('directives.js'))
.pipe(gulp_if(flags.production, rename({ suffix: '.min' })))
.pipe(gulp_if(flags.production, uglify()))
.pipe(gulp.dest('frontend/dist/js'));
var filters = gulp.src('frontend/src/js/filters/*.js')
.pipe(prettyError())
.pipe(concat('filters.js'))
.pipe(gulp_if(flags.production, rename({ suffix: '.min' })))
.pipe(gulp_if(flags.production, uglify()))
.pipe(gulp.dest('frontend/dist/js'));
var services = gulp.src('frontend/src/js/services/*.js')
.pipe(prettyError())
.pipe(concat('services.js'))
.pipe(gulp_if(flags.production, rename({ suffix: '.min' })))
.pipe(gulp_if(flags.production, uglify()))
.pipe(gulp.dest('frontend/dist/js'));
// return merge(app, configs, controllers, directives, filters, services)
});
// minify and compress html files
gulp.task('html', function() {
var webViews = gulp.src('frontend/src/views/web/**/*.html')
.pipe(gulp_if(flags.production, htmlmin({ collapseWhitespace: true })))
.pipe(gulp.dest('frontend/dist/views/web'));
// return merge(webViews, webPartials, challengePartials, webErrors);
});
// for image compression
gulp.task('images', function() {
return gulp.src('frontend/src/images/**/*')
.pipe(gulp_if(flags.production, imagemin({ optimizationLevel: 3, progressive: true, interlaced: true })))
.pipe(gulp.dest('frontend/dist/images'));
});
// Fonts
gulp.task('fonts', function() {
var font = gulp.src([
'bower_components/font-awesome/fonts/fontawesome-webfont.*', 'bower_components/materialize/fonts/**/*', 'frontend/src/fonts/*'
])
.pipe(gulp.dest('frontend/dist/fonts/'));
var fontCss = gulp.src([
'bower_components/font-awesome/css/font-awesome.css'
])
.pipe(gulp.dest('frontend/dist/css/'));
return merge(font, fontCss);
});
// Inject path of css and js files in index.html
gulp.task('inject', function() {
var sources = gulp.src([
'./frontend/dist/vendors/*.js',
'./frontend/dist/js/*.js',
'./frontend/dist/vendors/*.css',
'./frontend/dist/css/*.css',
], { read: false });
gulp.src('./frontend/base.html')
.pipe(inject(sources, { ignorePath: 'frontend', addRootSlash: true }))
.pipe(rename({
basename: "index"
}))
.pipe(gulp.dest('./frontend/'));
});
// config for dev server
gulp.task('configDev', function() {
gulp.src('frontend/src/js/config.json', { base: 'frontend/src/js/' })
.pipe(ngConfig('evalai-config', {
environment: 'local'
}))
.pipe(gulp.dest('frontend/dist/js'))
});
// config for staging server
gulp.task('configStaging', function() {
gulp.src('frontend/src/js/config.json')
.pipe(ngConfig('evalai-config', {
environment: 'staging'
}))
.pipe(gulp_if(flags.production, rename({ suffix: '.min' })))
.pipe(gulp_if(flags.production, uglify()))
.pipe(gulp.dest('frontend/dist/js'))
});
// config for prod server
gulp.task('configProd', function() {
gulp.src('frontend/src/js/config.json')
.pipe(ngConfig('evalai-config', {
environment: 'production'
}))
.pipe(gulp_if(flags.production, rename({ suffix: '.min' })))
.pipe(gulp_if(flags.production, uglify()))
.pipe(gulp.dest('frontend/dist/js'))
});
// js linting
var lint_path = {
js: ['frontend/src/js/**/*.js', ]
}
gulp.task('lint', [], function() {
return gulp.src(lint_path.js)
.pipe(eslint({}))
.pipe(eslint.format())
.pipe(eslint.results(function(results) {
// Get the count of lint errors
var countError = results.errorCount;
//Get the count of lint warnings
var countWarning = results.warningCount;
if (countError === 0) {
gulp.start('connect');
if(countWarning > 0) {
console.warn("Please remove lint warnings in production env.");
}
} else {
connect.serverClose();
console.error("Please remove lint errors to connect the server");
}
}))
});
// cleaning build process- run clean before deploy and rebuild files again
gulp.task('clean', function() {
return del(['frontend/dist/'], { force: true });
});
// watch function
gulp.task('watch', function() {
// Watch .scss files
gulp.watch('frontend/src/css/**/*.scss', ['css']).on('change', function(event) {
if (event.type == 'deleted') {
var filePathFromSrc = path.relative(path.resolve('frontend/src/css/'), event.path);
var destFilePath = path.resolve('frontend/dist/css', filePathFromSrc);
del.sync(destFilePath);
}
});
// Watch .js files
gulp.watch('frontend/src/js/**/*.js', ['js']).on('change', function(event) {
if (event.type == 'deleted') {
var filePathFromSrc = path.relative(path.resolve('frontend/src/js/'), event.path);
var destFilePath = path.resolve('frontend/dist/js', filePathFromSrc);
del.sync(destFilePath);
}
});
// Watch html files
gulp.watch('frontend/src/views/**/*.html', ['html']).on('change', function(event) {
if (event.type == 'deleted') {
var filePathFromSrc = path.relative(path.resolve('frontend/src/views/'), event.path);
var destFilePath = path.resolve('frontend/dist/views/web', filePathFromSrc);
del.sync(destFilePath);
}
});
// Watch image files
gulp.watch('frontend/src/images/**/*', ['images']).on('change', function(event) {
if (event.type == 'deleted') {
var filePathFromSrc = path.relative(path.resolve('frontend/src/images/'), event.path);
var destFilePath = path.resolve('frontend/dist/images', filePathFromSrc);
del.sync(destFilePath);
}
});
// Watch config dev
gulp.watch('frontend/src/js/config.json', ['configDev']).on('change', function(event) {
if (event.type == 'deleted') {
var filePathFromSrc = path.relative(path.resolve('frontend/src/js/'), event.path);
var destFilePath = path.resolve('frontend/dist/js', filePathFromSrc);
del.sync(destFilePath);
}
});
gulp.watch('bower_components/font-awesome/fonts/fontawesome-webfont.*', ['fonts']).on('change', function(event) {
if (event.type == 'deleted') {
var filePathFromSrc = path.relative(path.resolve('bower_components/font-awesome/fonts/'), event.path);
var destFilePath = path.resolve('frontend/dist/fonts/', filePathFromSrc);
del.sync(destFilePath);
}
});
gulp.watch('bower_components/materialize/fonts/**/*', ['fonts']).on('change', function(event) {
if (event.type == 'deleted') {
var filePathFromSrc = path.relative(path.resolve('bower_components/materialize/fonts/'), event.path);
var destFilePath = path.resolve('frontend/dist/fonts/', filePathFromSrc);
del.sync(destFilePath);
}
});
gulp.watch('bower_components/font-awesome/css/font-awesome.css', ['fonts']).on('change', function(event) {
if (event.type == 'deleted') {
var filePathFromSrc = path.relative(path.resolve('bower_components/font-awesome/css/'), event.path);
var destFilePath = path.resolve('frontend/dist/css/', filePathFromSrc);
del.sync(destFilePath);
}
});
// Create LiveReload server
livereload.listen();
// Watch any files in dist/, reload on change
gulp.watch(['frontend/dist/**'], ['lint']).on('change', livereload.changed);
});
/**
* Run test once and exit
*/
gulp.task('test', function (done) {
new Server({
configFile: __dirname + '/karma.conf.js',
singleRun: true
}, done).start();
});
/**
* Watch for file changes and re-run tests on each change
*/
gulp.task('test:watch', function (done) {
new Server({
configFile: __dirname + '/karma.conf.js'
}, done).start();
});
// Start a server for serving frontend
gulp.task('connect', ['lint'], function() {
// initially close the existance server if exists
connect.serverClose();
connect.server({
root: 'frontend/',
port: 8888,
middleware: function(connect) {
return [
connectModRewrite([
'!\\.html|\\.js|\\.css|\\.ico|\\.png|\\.gif|\\.jpg|\\.woff|.\\.ttf|.\\otf|\\.jpeg|\\.swf.*$ /index.html [NC,L]'
])
];
}
});
})
// development task
var flags = {
production: false
};
gulp.task('dev', function(callback) {
runSequence('clean', ['css', 'js', 'html', 'images', 'vendorjs', 'vendorcss', 'fonts', 'configDev'], 'inject', callback);
});
// staging task
gulp.task('staging', function(callback) {
flags.production = false; //Making this 'true' enables file compression. This will be done after js test integration
runSequence('clean', ['css', 'js', 'html', 'images', 'vendorjs', 'vendorcss', 'fonts', 'configStaging'], 'inject', callback);
});
// production task
gulp.task('prod', function(callback) {
flags.production = false; //Making this 'true' enables file compression. This will be done after js test integration
runSequence('clean', ['css', 'js', 'html', 'images', 'vendorjs', 'vendorcss', 'fonts', 'configProd'], 'inject', callback);
});
// Runserver for development
gulp.task('dev:runserver', function(callback) {
runSequence('dev', 'connect', 'watch', 'test:watch', callback);
});