forked from caciviclab/disclosure-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
executable file
·423 lines (372 loc) · 12.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
413
414
415
416
417
418
419
420
421
422
423
'use strict';
var argv = require('yargs').argv;
// =======================================================================
// Gulp Plugins
// =======================================================================
var gulp = require('gulp'),
connect = require('gulp-connect'),
jshint = require('gulp-jshint'),
stylish = require('jshint-stylish'),
jscs = require('gulp-jscs'),
concat = require('gulp-concat'),
streamify = require('gulp-streamify'),
uglify = require('gulp-uglify'),
sourcemaps = require('gulp-sourcemaps'),
less = require('gulp-less'),
prefix = require('gulp-autoprefixer'),
minifyCSS = require('gulp-minify-css'),
notify = require('gulp-notify'),
webserver = require('gulp-webserver'),
browserify = require('browserify'),
watchify = require('watchify'),
del = require('del'),
source = require('vinyl-source-stream'),
buffer = require('vinyl-buffer'),
runSequence = require('run-sequence'),
karma = require('karma').server,
gulpif = require('gulp-if');
// =======================================================================
// File Paths
// =======================================================================
var filePath = {
build: {
dest: './dist'
},
lint: {
src: ['./app/**/*.js']
},
browserify: {
src: './app/app.js',
watch: [
'!./app/**/*.spec.js',
'./app/**/*.js',
'./app/**/*.html'
]
},
styles: {
src: './app/app.less',
watch: ['./app/**/*.less']
},
assets: {
images: {
src: './app/assets/images/**/*',
watch: ['./app/assets/images', './app/assets/images/**/*'],
dest: './dist/images/'
},
fonts: {
src: ['./node_modules/font-awesome/fonts/*', './app/fonts/**/*'],
dest: './dist/fonts/'
}
},
vendorJS: {
// These files will be bundled into a single vendor.js file that's called at the bottom of index.html
src: ['./app/thirdparty/index.js']
},
//vendorCSS: {
// src: [
// './libs/bootstrap/dist/css/bootstrap.css', // v3.1.1
// './libs/font-awesome/css/font-awesome.css' // v4.1.0
// ]
//},
copyIndex: {
src: './app/index.html',
watch: './app/index.html'
},
copyFavicon: {
src: './app/favicon.png'
}
};
// =======================================================================
// Error Handling
// =======================================================================
function handleError(err) {
console.log(err.toString());
this.emit('end');
}
// =======================================================================
// Server Task
// =======================================================================
var express = require('express'),
server = express();
// Server settings
server.use(express.static(filePath.build.dest));
// Redirects everything back to our index.html
server.all('/*', function(req, res) {
res.sendfile('/', {
root: filePath.build.dest
});
});
// uncomment the "middleware" section when you are ready to connect to an API
gulp.task('server', function() {
connect.server({
root: filePath.build.dest,
fallback: filePath.build.dest + '/index.html',
port: 5000,
livereload: true
// ,
// middleware: function(connect, o) {
// return [ (function() {
// var url = require('url');
// var proxy = require('proxy-middleware');
// var options = url.parse('http://localhost:3000/'); // path to your dev API
// options.route = '/api';
// return proxy(options);
// })() ];
// }
});
});
// =======================================================================
// Clean out dist folder contents on build
// =======================================================================
gulp.task('clean-dev', function() {
del(['./dist/*.js',
'./dist/*.css',
'!./dist/vendor.js',
'!./dist/vendor.css',
'./dist/*.html',
'./dist/*.png',
'./dist/*.ico',
'./reports/**/*',
'./reports']);
});
gulp.task('clean-full', function() {
del(['./dist/*',
'./reports/**/*',
'./reports']);
});
// =======================================================================
// JSHint
// =======================================================================
gulp.task('lint', function() {
return gulp.src(filePath.lint.src)
.pipe(jshint())
.pipe(jshint.reporter(stylish));
});
// =======================================================================
// Javascript Checkstyles (JSCS)
// =======================================================================
gulp.task('checkstyle', function() {
return gulp.src(filePath.lint.src)
.pipe(jscs())
.on('error', handleError);
});
// =======================================================================
// Browserify Bundle
// =======================================================================
var bundle = {};
bundle.conf = {
entries: filePath.browserify.src,
external: filePath.vendorJS.src,
debug: true,
cache: {},
packageCache: {}
};
function rebundle() {
return bundle.bundler.bundle()
.pipe(source('bundle.js'))
.on('error', handleError)
.pipe(buffer())
.pipe(gulpif(!bundle.prod, sourcemaps.init({
loadMaps: true
})))
.pipe(gulpif(!bundle.prod, sourcemaps.write('./')))
.pipe(gulpif(bundle.prod, streamify(uglify({
mangle: false
}))))
.pipe(gulp.dest(filePath.build.dest))
.pipe(connect.reload());
}
function configureBundle(prod) {
var bundler = browserify(bundle.conf);
if (!prod) {
bundler = watchify(bundler);
bundler.on('update', rebundle);
}
bundle.bundler = bundler;
bundle.prod = prod;
}
gulp.task('bundle-dev', function () {
'use strict';
configureBundle(false);
return rebundle();
});
gulp.task('bundle-prod', function () {
'use strict';
configureBundle(true);
return rebundle();
});
// =======================================================================
// Styles Task
// =======================================================================
gulp.task('styles-dev', function() {
return gulp.src(filePath.styles.src)
.pipe(sourcemaps.init())
.pipe(less())
.on('error', handleError)
.pipe(sourcemaps.write())
.pipe(gulp.dest(filePath.build.dest))
.on('error', handleError)
.pipe(notify({
message: 'Styles task complete'
}))
.pipe(connect.reload());
});
gulp.task('styles-prod', function() {
return gulp.src(filePath.styles.src)
.pipe(less())
.on('error', handleError)
.pipe(prefix('last 1 version', '> 1%', 'ie 8', 'ie 7', {
map: true
}))
.pipe(minifyCSS())
.pipe(gulp.dest(filePath.build.dest))
.on('error', handleError)
.pipe(notify({
message: 'Styles task complete'
}));
});
// =======================================================================
// Images Task
// =======================================================================
gulp.task('images', function() {
return gulp.src(filePath.assets.images.src)
.on('error', handleError)
.pipe(gulp.dest(filePath.assets.images.dest))
.pipe(notify({
message: 'Images copied'
}))
.pipe(connect.reload());
});
// =======================================================================
// Fonts Task
// =======================================================================
gulp.task('fonts', function () {
return gulp.src(filePath.assets.fonts.src)
.on('error', handleError)
.pipe(gulp.dest(filePath.assets.fonts.dest))
.pipe(connect.reload());
});
// =======================================================================
// Vendor JS Task
// =======================================================================
gulp.task('vendorJS', function() {
var b = browserify({
debug: true,
entries: filePath.vendorJS.src
});
return b.bundle()
.pipe(source('vendor.js'))
.on('error', handleError)
.pipe(buffer())
.pipe(uglify())
.pipe(gulp.dest(filePath.build.dest))
.pipe(notify({
message: 'VendorJS task complete'
}));
});
// =======================================================================
// Vendor CSS Task
// =======================================================================
//gulp.task('vendorCSS', function() {
// return gulp.src(filePath.vendorCSS.src)
// .pipe(concat('vendor.css'))
// .on('error', handleError)
// .pipe(minifyCSS())
// .pipe(gulp.dest(filePath.build.dest))
// .pipe(notify({
// message: 'VendorCSS task complete'
// }))
// .pipe(connect.reload());
//});
// =======================================================================
// Copy index.html
// =======================================================================
gulp.task('copyIndex', function() {
return gulp.src(filePath.copyIndex.src)
.pipe(gulp.dest(filePath.build.dest))
.pipe(notify({
message: 'index.html successfully copied'
}))
.pipe(connect.reload());
});
// =======================================================================
// Copy Favicon
// =======================================================================
gulp.task('copyFavicon', function() {
return gulp.src(filePath.copyFavicon.src)
.pipe(gulp.dest(filePath.build.dest))
.pipe(notify({
message: 'favicon successfully copied'
}));
});
// =======================================================================
// Watch for changes
// =======================================================================
gulp.task('watch', function() {
gulp.watch(filePath.styles.watch, ['styles-dev']);
gulp.watch(filePath.assets.images.watch, ['images']);
gulp.watch(filePath.vendorJS.src, ['vendorJS']);
gulp.watch(filePath.copyIndex.watch, ['copyIndex']);
gulp.watch(filePath.lint.src, ['checkstyle']);
console.log('Watching...');
});
// =======================================================================
// Start a webserver to serve the assets to developers directly
// =======================================================================
gulp.task('webserver', function() {
gulp.src('app')
.pipe(webserver({
livereload: true,
directoryListing: true,
open: true
}));
});
// =======================================================================
// Karma Configuration
// =======================================================================
gulp.task('karma', function(done) {
karma.start({
configFile: __dirname + '/karma.conf.js',
singleRun: !argv.watch
}, done);
});
// =======================================================================
// Sequential Build Rendering
// =======================================================================
// run "gulp" in terminal to build the DEV app
gulp.task('build-dev', function(callback) {
runSequence(
['clean-dev', 'lint', 'checkstyle'],
// images and vendor tasks are removed to speed up build time. Use "gulp build" to do a full re-build of the dev app.
['bundle-dev', 'styles-dev', 'copyIndex', 'copyFavicon'], ['server', 'watch'],
callback
);
});
// run "gulp test" in terminal to build the DEV app
gulp.task('build-test', function(callback) {
runSequence(
['clean-full', 'lint', 'checkstyle'],
['karma'],
callback
);
});
// run "gulp prod" in terminal to build the PROD-ready app
gulp.task('build-prod', function(callback) {
runSequence(
['clean-full', 'lint', 'checkstyle'],
['bundle-prod', 'styles-prod', 'images', 'fonts', 'vendorJS', 'copyIndex', 'copyFavicon'],
callback
);
});
// run "gulp build" in terminal for a full re-build in DEV
gulp.task('build', function(callback) {
runSequence(
['clean-full', 'lint', 'checkstyle'],
['bundle-dev', 'styles-dev', 'images', 'fonts', 'vendorJS', 'copyIndex', 'copyFavicon'],
['server', 'watch'],
callback
);
});
gulp.task('default', ['build-dev']);
gulp.task('test', ['build-test']);
gulp.task('prod', ['build-prod']);