-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgulpfile.js
402 lines (342 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
(function (gulp, gulpLoadPlugins) {
'use strict';
var $ = gulpLoadPlugins({ pattern: '*', lazy: true }),
_ = {
vendor: 'thirdparty',
src: 'assets/src',
build: 'assets/build'
},
exitCode = 0,
watch = false,
eHandler = function(e) {
// notify
// console.log(e);
$.notify.onError('Error: <%= error.message %>')(e);
// fail the build if it isn't a watch
if (!watch) {
exitCode = 1;
process.emit('exit');
}
// else emit an end if it's a watch - ideally we could prevent
// dependant tasks from running ,but doesn't seem to work right now
else {
this.emit('end');
}
};
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ jsonlint
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
gulp.task('jsonlint', function(notest) {
// don't run the tests if the --notest flag is supplied
// used for deploys when we don't alweays install all the dev deps
if (notest) return true;
return gulp.src([
'package.json',
'bower.json',
'.bowerrc',
'.jshintrc',
])
.pipe($.plumber({errorHandler: eHandler}))
.pipe($.jsonlint())
.pipe($.jsonlint.failOnError())
.pipe($.jsonlint.reporter(''))
.pipe($.notify({
onLast: true,
message: 'jsonlint complete'
}));
});
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ jshint
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
gulp.task('jshint', function(notest) {
// don't run the tests if the --notest flag is supplied
// used for deploys when we don't always install all the dev deps
if (notest) return true;
return gulp.src([
'gulpfile.js',
_.src + '/js/**/*.js',
'!' + _.vendor + '/**/*.js',
'test/spec/{,*/}*.js'
])
.pipe($.plumber({errorHandler: eHandler}))
.pipe($.jshint())
.pipe($.jshint.reporter('default'))
.pipe($.jshint.reporter('fail'))
.pipe($.notify({
onLast: true,
message: 'jshint complete'
}));
});
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ scss-lint
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
gulp.task('scss-lint', function(notest) {
// don't run the tests if the --notest flag is supplied
// used for deploys when we don't always install all the dev deps
if (notest) return true;
// the task
return gulp.src(_.src + '/scss/**/*')
.pipe($.plumber({errorHandler: eHandler}))
.pipe($.scssLint({
bundleExec: true,
maxBuffer: 1024 * 1024
}))
.pipe($.scssLint.failReporter('E'))
.pipe($.notify({
onLast: true,
message: 'scss-lint complete'
}));
});
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ php-lint
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
gulp.task('phplint', function(notest) {
// don't run the tests if the --notest flag is supplied
// used for deploys when we don't always install all the dev deps
if (notest) return true;
return gulp.src(_.project + '/**/*.php')
.pipe($.plumber({errorHandler: eHandler}))
.pipe($.phplint('', {}))
.pipe($.phplint.reporter('fail'))
.pipe($.notify({
onLast: true,
message: 'phplint complete'
}));
});
gulp.task('phpcs-conf', function(notest) {
// don't run the tests if the --notest flag is supplied
// used for deploys when we don't always install all the dev deps
if (notest) return true;
return $.shelljs.exec('vendor/squizlabs/php_codesniffer/scripts/phpcs --config-set ignore_warnings_on_exit 1');
});
gulp.task('phpcs', ['phpcs-conf'], function(notest) {
// don't run the tests if the --notest flag is supplied
// used for deploys when we don't always install all the dev deps
if (notest) return true;
return gulp.src(_.project + '/**/*.php')
.pipe($.plumber({errorHandler: eHandler}))
.pipe($.phpcs({
bin: 'vendor/squizlabs/php_codesniffer/scripts/phpcs',
showSniffCode: true,
}))
.pipe($.phpcs.reporter('log'))
.pipe($.phpcs.reporter('fail'))
.pipe($.notify({
onLast: true,
message: 'phpcs complete'
}));
});
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ js
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
gulp.task('js-lib', function() {
return gulp.src([
_.vendor + '/jquery-tokenize/jquery.tokenize.js'
])
.pipe($.plumber({errorHandler: eHandler}))
.pipe($.concat('lib.js'))
.pipe($.gulp.dest(_.build + '/js'))
.pipe($.size())
.pipe($.notify({
onLast: true,
message: 'js-lib complete'
}));
});
gulp.task('js', function() {
return gulp.src([
_.src + '/js/**/*.js'
])
.pipe($.plumber({errorHandler: eHandler}))
.pipe($.gulp.dest(_.build + '/js'))
.pipe($.size())
.pipe($.notify({
onLast: true,
message: 'js complete'
}));
});
gulp.task('js-build', ['js-lib', 'js'], function() {
gulp.src([
_.build + '/js/**/*.js'
])
.pipe($.plumber({errorHandler: eHandler}))
.pipe($.uglifyjs({
mangle: {
except: ['$','require','exports','define']
}
}))
.pipe(gulp.dest(_.build + '/js'))
.pipe($.size())
.pipe($.notify({
onLast: true,
message: 'js-build complete'
}));
});
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ styles
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
gulp.task('styles', ['scss-lint'], function() {
return $.rubySass(_.src + '/scss/', {
sourcemap: true,
bundleExec: true
})
.pipe($.plumber({errorHandler: eHandler}))
.on('error', $.util.log)
//.pipe($.sourcemaps.write())
.pipe(gulp.dest(_.build + '/css'))
.pipe($.size())
.pipe($.notify({
onLast: true,
message: 'styles complete'
}));
});
gulp.task('styles-build', ['scss-lint'], function() {
return $.rubySass(_.src + '/scss/', {
sourcemap: false,
style: 'compressed',
bundleExec: true
})
.pipe($.plumber({errorHandler: eHandler}))
.on('error', $.util.log)
.pipe($.csso())
.pipe(gulp.dest(_.build + '/css'))
.pipe($.size())
.pipe($.notify({
onLast: true,
message: 'styles-build complete'
}));
});
gulp.task('styles-blessed', ['styles'], function() {
return gulp.src(_.build + '/css/main.css')
.pipe($.plumber({errorHandler: eHandler}))
.pipe($.bless())
.pipe(gulp.dest(_.build + '/css/blessed'))
.pipe($.size())
.pipe($.notify({
onLast: true,
message: 'styles-blessed complete'
}));
});
gulp.task('styles-blessed-build', ['styles-build'], function() {
return gulp.src(_.build + '/css/main.css')
.pipe($.plumber({errorHandler: eHandler}))
.pipe($.bless())
.pipe(gulp.dest(_.build + '/css/blessed'))
.pipe($.size())
.pipe($.notify({
onLast: true,
message: 'styles-blessed-build complete'
}));
});
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ img
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
gulp.task('img', function() {
// load optimiser plugins
var pngquant = require('imagemin-pngquant'),
jpegoptim = require('imagemin-jpegoptim');
return gulp.src([
_.src + '/img/**/*.{png,jpg,jpeg,gif,ico}'
])
.pipe($.plumber({errorHandler: eHandler}))
.pipe(
$.imageOptimization({
optimizationLevel: 4,
progressive: true,
interlaced: true,
use: [
pngquant(),
jpegoptim({
progressive: true,
max: 80
}),
]
})
)
.pipe(gulp.dest(_.build + '/img'))
.pipe($.size())
.pipe($.notify({
onLast: true,
message: 'img complete'
}));
});
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ copy
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
gulp.task('copy', function() {
return gulp.src([
_.src + '/font/**/*'
])
.pipe($.plumber())
.pipe(gulp.dest(_.build + '/font'))
.pipe($.size())
.pipe($.notify({
onLast: true,
message: 'copy complete'
}));
});
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ watch
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
gulp.task('watch', function() {
// don't kill gulp if it's a watch
watch = true;
// Watch style files
$.watch([_.src + '/scss/**/*.scss', _.vendor + '/**/*.scss'], function() {
gulp.start('styles-blessed');
gulp.start('scss-lint');
});
// Watch script files
$.watch([_.src + '/js/**/*', _.vendor + '/**/*.js'], function() {
gulp.start('js-lib');
gulp.start('js');
gulp.start('jshint');
});
// Watch image files
$.watch([_.src + '/img/*'], function() {
gulp.start('img');
gulp.start('svg');
});
// Watch image files
$.watch([_.src + '/font/*'], function() {
gulp.start('copy');
});
// not 100% sure of a nice way to lint php for this currently
// Watch php files
// $.watch([_.project + '/**/*.php'], function() {
// gulp.start('php-qa');
// });
});
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ clean
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
gulp.task('clean', function (cb) {
$.del([
_.build + '/img',
_.build + '/js',
_.build + '/css',
_.build + '/font'
], cb);
});
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ alias
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
gulp.task('php-qa', ['phpcs', 'phplint']);
// not 100% sure of a nice way to lint php for this currently
// gulp.task('test', ['jsonlint', 'jshint', 'php-qa', 'scss-lint']);
gulp.task('test', ['jsonlint', 'jshint', 'scss-lint']);
gulp.task('build', ['test', 'img', 'js-build', 'styles-blessed-build', 'copy']);
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ default
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
gulp.task('default', ['clean'], function() {
gulp.start('build');
});
//|**~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
//| ✓ exit on error
//'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
process.on('exit', function () {
process.nextTick(function () {
process.exit(exitCode);
});
});
}(require('gulp-param')(require('gulp'), process.argv), require('gulp-load-plugins')));