forked from Cloud-CV/EvalAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
346 lines (286 loc) · 12 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
// Gulp Tasks
'use strict';
var gulp = require('gulp'),
merge = require('merge-stream'),
sass = require('gulp-ruby-sass'),
autoprefixer = require('gulp-autoprefixer'),
cssnano = require('gulp-cssnano'),
jshint = require('gulp-jshint'),
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'),
// path = require('gulp-path'),
// conf = require('./conf')(gulp),
_ = require('lodash');
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);
}
}))
})
});
// 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 prod server
gulp.task('configProd', function() {
gulp.src('frontend/src/js/config.json')
.pipe(ngConfig('evalai-config', {
environment: 'production'
}))
.pipe(gulp.dest('frontend/dist/js'))
});
// 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.dest('frontend/dist/css'))
.pipe(rename({ suffix: '.min' }))
.pipe(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(jshint.reporter('default'))
.pipe(concat('app.js'))
.pipe(gulp.dest('frontend/dist/js'))
.pipe(rename({ suffix: '.min' }))
.pipe(uglify())
.pipe(gulp.dest('frontend/dist/js'));
var configs = gulp.src('frontend/src/js/route-config/*.js')
.pipe(prettyError())
.pipe(jshint.reporter('default'))
.pipe(concat('route-config.js'))
.pipe(gulp.dest('frontend/dist/js'))
.pipe(rename({ suffix: '.min' }))
.pipe(uglify())
.pipe(gulp.dest('frontend/dist/js'));
var controllers = gulp.src('frontend/src/js/controllers/*.js')
.pipe(prettyError())
.pipe(jshint.reporter('default'))
.pipe(concat('controllers.js'))
.pipe(gulp.dest('frontend/dist/js'))
.pipe(rename({ suffix: '.min' }))
.pipe(uglify())
.pipe(gulp.dest('frontend/dist/js'));
var directives = gulp.src('frontend/src/js/directives/*.js')
.pipe(prettyError())
.pipe(jshint.reporter('default'))
.pipe(concat('directives.js'))
.pipe(gulp.dest('frontend/dist/js'))
.pipe(rename({ suffix: '.min' }))
.pipe(uglify())
.pipe(gulp.dest('frontend/dist/js'));
var filters = gulp.src('frontend/src/js/filters/*.js')
.pipe(prettyError())
.pipe(jshint.reporter('default'))
.pipe(concat('filters.js'))
.pipe(gulp.dest('frontend/dist/js'))
.pipe(rename({ suffix: '.min' }))
.pipe(uglify())
.pipe(gulp.dest('frontend/dist/js'));
var services = gulp.src('frontend/src/js/services/*.js')
.pipe(prettyError())
.pipe(jshint.reporter('default'))
.pipe(concat('services.js'))
.pipe(gulp.dest('frontend/dist/js'))
.pipe(rename({ suffix: '.min' }))
.pipe(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(htmlmin({ collapseWhitespace: true }))
.pipe(gulp.dest('frontend/dist/views/web'));
var webPartials = gulp.src('frontend/src/views/web/partials/*.html')
.pipe(htmlmin({ collapseWhitespace: true }))
.pipe(gulp.dest('frontend/dist/views/web/partials'));
var challengePartials = gulp.src('frontend/src/views/web/challenge/*.html')
.pipe(htmlmin({ collapseWhitespace: true }))
.pipe(gulp.dest('frontend/dist/views/web/challenge'));
var webErrors = gulp.src('frontend/src/views/web/error-pages/*.html')
.pipe(htmlmin({ collapseWhitespace: true }))
.pipe(gulp.dest('frontend/dist/views/web/error-pages'));
return merge(webViews, webPartials, challengePartials, webErrors);
});
// for image compression
gulp.task('images', function() {
return gulp.src('frontend/src/images/**/*')
.pipe(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/**/*'
])
.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);
});
// cleaning build process- run clean before deploy and rebuild files again
gulp.task('clean', function() {
return del(['frontend/dist/css', 'frontend/dist/js', 'frontend/dist/images', '../frontend/dist/vendors', 'frontend/dist/views'], { 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/**']).on('change', livereload.changed);
});
// Start a server for serving frontend
gulp.task('connect', function() {
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
gulp.task('dev', ['clean'], function() {
gulp.start('css', 'js', 'html', 'images', 'vendorjs', 'vendorcss', 'fonts', 'configDev');
});
// production task
gulp.task('prod', ['clean'], function() {
gulp.start('css', 'js', 'html', 'images', 'vendorjs', 'vendorcss', 'fonts', 'configProd');
});
// Runserver for development
gulp.task('dev:runserver', ['dev'], function() {
gulp.start('connect', 'watch');
});