-
Notifications
You must be signed in to change notification settings - Fork 8
/
gulpfile.babel.js
79 lines (65 loc) · 1.69 KB
/
gulpfile.babel.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
'use strict';
import gulp from 'gulp';
import gulpLoadPlugins from 'gulp-load-plugins';
import browserSyncLib from 'browser-sync';
import pjson from './package.json';
import minimist from 'minimist';
import wrench from 'wrench';
import {jsWatch} from './gulp/config/shared-vars';
// Load all gulp plugins based on their names
// EX: gulp-copy -> copy
const plugins = gulpLoadPlugins();
const defaultNotification = function(err) {
return {
subtitle: err.plugin,
message: err.message,
sound: 'Funk',
onLast: true,
};
};
let config = Object.assign({}, pjson.config, defaultNotification);
let args = minimist(process.argv.slice(2));
let dirs = config.directories;
let taskTarget = args.production ? dirs.destination : dirs.temporary;
// Create a new browserSync instance
let browserSync = browserSyncLib.create();
// This will grab all js in the `gulp` directory
// in order to load all gulp tasks
wrench.readdirSyncRecursive('./gulp/tasks').filter((file) => {
return (/\.(js)$/i).test(file);
}).map(function(file) {
require('./gulp/tasks/' + file)(gulp, plugins, args, config, taskTarget, browserSync);
});
let watch = false;
// Compiles all the code
gulp.task('compile', gulp.series(
gulp.parallel(
'copy',
'pug',
'imagemin',
'sass',
'compile-tests',
'browserify',
)
));
// Default task
gulp.task('default', gulp.series(
'clean',
(done) => {
jsWatch.isEnabled = true;
done();
},
'compile',
'watch'//watch holds browsersync
));
// Build production-ready code
gulp.task('build', gulp.series(
'clean',
(done) => {
jsWatch.isEnabled = true;
done();
},
'compile'
));
// Server tasks with watch
gulp.task('serve', gulp.series('default'));