This repository has been archived by the owner on Aug 8, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
gulpfile.js
executable file
·342 lines (304 loc) · 11.1 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
'use strict';
var argv = require('yargs').argv;
var browserify = require('browserify');
var browserifyCss = require('browserify-css');
var markedify = require('markedify');
var buffer = require('vinyl-buffer');
// =======================================================================
// Gulp Plugins
// =======================================================================
var gulp = require('gulp'),
connect = require('gulp-connect'),
gutil = require('gulp-util'),
livereload = require('gulp-livereload'),
merge = require('merge'),
rename = require('gulp-rename'),
jshint = require('gulp-jshint'),
stylish = require('jshint-stylish'),
jscs = require('gulp-jscs'),
concat = require('gulp-concat'),
streamify = require('gulp-streamify'),
uglify = require('gulp-uglify'),
less = require('gulp-less'),
cssnano = require('gulp-cssnano'),
prefix = require('gulp-autoprefixer'),
notify = require('gulp-notify'),
webserver = require('gulp-webserver'),
watchify = require('watchify'),
del = require('del'),
source = require('vinyl-source-stream'),
sourceMaps = require('gulp-sourcemaps'),
runSequence = require('run-sequence'),
Karma = require('karma').Server,
gulpif = require('gulp-if'),
envify = require('envify'),
ngAnnotate = require('gulp-ng-annotate');
// =======================================================================
// File Paths
// =======================================================================
var filePath = require('./gulp.config')();
// =======================================================================
// Error Handling
// =======================================================================
function handleError(err) {
gutil.log(err.message);
// 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/*.css',
'!./dist/fonts/**',
'!./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
// =======================================================================
gulp.task('bundle', function () {
return browserify({
entries: filePath.browserify.src,
debug: true
})
.transform(browserifyCss, {
global: true,
})
.transform(markedify)
.bundle() // Start bundle
.pipe(source(filePath.browserify.src)) // Entry point
.pipe(buffer()) // Convert to gulp pipeline
.pipe(sourceMaps.init({
loadMaps: true
})) // Strip inline source maps
.pipe(ngAnnotate())
.pipe(uglify({
mangle: false
})).on('error', handleError)
.pipe(rename(filePath.browserify.outputFile)) // Rename output from 'app.js' to 'bundle.js'
.pipe(sourceMaps.write(filePath.browserify.mapDir)) // Save source maps to their own directory
.pipe(gulp.dest(filePath.browserify.outputDir)) // Save 'bundle' to build/
.pipe(connect.reload()) // Reload browser if relevant
});
// =======================================================================
// 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 + '/css'))
.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%', {
map: true
}))
.pipe(cssnano())
.pipe(gulp.dest(filePath.build.dest + '/css'))
.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 CSS Task
// =======================================================================
//gulp.task('vendorCSS', function() {
// return gulp.src(filePath.vendorCSS.src)
// .pipe(concat('vendor.css'))
// .on('error', handleError)
// .pipe(cssnano())
// .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.browserify.watch, ['bundle']);
// 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) {
var karma = new Karma({
configFile: __dirname + '/karma.conf.js',
singleRun: !argv.watch
}, done);
karma.start();
});
// =======================================================================
// 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',
'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',
'styles-prod', 'images', 'fonts', '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', 'styles-dev', 'images', 'fonts', 'copyIndex', 'copyFavicon'], ['server', 'watch'],
callback
);
});
gulp.task('default', ['build-dev']);
gulp.task('test', ['build-test']);
gulp.task('prod', ['build-prod']);