-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
215 lines (193 loc) · 5.48 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
'use strict';
/* ========================================================================
GULP -> MODULES
======================================================================== */
/**
* Required dependency modules.
* @const {module}
*/
const autoprefixer = require('gulp-autoprefixer');
const babel = require('gulp-babel');
const browsersync = require('browser-sync');
const concat = require('gulp-concat');
const connect = require('gulp-connect-php7');
const gulp = require('gulp');
const notify = require('gulp-notify');
const plumber = require('gulp-plumber');
const rename = require('gulp-rename');
const sass = require('gulp-sass');
const uglify = require('gulp-uglify');
/* ========================================================================
GULP -> SERVER
======================================================================== */
/**
* Localhost proxy server and port for php connect.
* @const {string}
*/
const hostname = 'juiceboilerplate.localhost';
const port = 3001;
/* ========================================================================
GULP -> FILES
======================================================================== */
/**
* Set the output build directories.
* @const {object}
*/
const destination = {
css: 'public/css',
scripts: 'public/scripts'
};
/**
* Output file names.
* @const {array}
*/
const filename = {
css: 'app.min.css',
scripts: 'app.min.js'
};
/**
* Set the files to watch for changes.
* @const {object}
*/
const files = {
sass: 'resources/sass/**/*.scss',
scripts: 'resources/scripts/**/*.js',
html: '**/*.html',
twig: '**/*.twig',
php: '**/*.php'
};
/**
* Set the resource files.
* @type {object}
*/
const resource = {
sass: [
'resources/sass/app.scss'
],
scripts: [
'node_modules/velocity-animate/velocity.min.js',
'node_modules/just-add-juice/resources/scripts/**/*.js',
'resources/scripts/app.js'
]
};
/* ========================================================================
GULP -> FUNCTIONS
======================================================================== */
/**
* Set the css task to compile sass to css, autoprefix, minimize, rename and reload browsersync.
* @module gulp-plumber
* @module gulp-notify
* @module gulp-sass
* @module gulp-autoprefixer
* @module gulp-rename
* @module browser-sync
* @return {object} The completed gulp task.
*/
const css = () => {
// Return the completed gulp task
return (
gulp.src(resource.sass)
.pipe(plumber({
errorHandler: notify.onError({
title: 'Gulp CSS Task Incomplete',
subtitle: 'Error',
message: '<%= error.message %>'
})
}))
.pipe(sass({
outputStyle: 'compressed',
includePaths: [
'node_modules/'
]
}))
.pipe(autoprefixer())
.pipe(rename(filename.css))
.pipe(gulp.dest(destination.css))
.pipe(notify({
title: 'Gulp CSS Task',
message: 'Task completed.',
sound: 'pop'
}))
.pipe(browsersync.reload({
stream: true
}))
);
};
/**
* Set the scripts task to concat all javascript files, strip comments, compile
* es6 to es5, minimize and reload browsersync.
* @module gulp-plumber
* @module gulp-notify
* @module gulp-babel
* @module gulp-concat
* @module gulp-uglify
* @module browser-sync
* @return {object} The completed gulp task.
*/
const scripts = () => {
// Return the completed gulp task
return (
gulp.src(resource.scripts)
.pipe(plumber({
errorHandler: notify.onError({
title: 'Gulp Scripts Task Incomplete',
subtitle: 'Error',
message: '<%= error.message %>'
})
}))
.pipe(babel({
presets: [
'@babel/preset-env'
]
}))
.pipe(concat(filename.scripts))
.pipe(uglify())
.pipe(gulp.dest(destination.scripts))
.pipe(notify({
title: 'Gulp Scripts Task',
message: 'Task completed.',
sound: 'pop'
}))
.pipe(browsersync.reload({
stream: true
}))
);
};
/**
* Set the observe task to watch for files.
* @return {void}
*/
const serve = () => {
// Start a new server
connect.server({}, () => {
// Proxy the hostname and port
browsersync({
proxy: hostname,
port: port
});
});
};
/**
* Set the watch task to watch for file changes.
* @return {void}
*/
const watch = () => {
// Watch for sass file changes and call the css task
gulp.watch(files.sass, css);
// Watch for javascript file changes and call the scripts task
gulp.watch(files.scripts, scripts);
// Watch for html file changes and reload browsersync
gulp.watch(files.html).on('change', () => {
// Reload browsersync
browsersync.reload();
});
};
/* ========================================================================
GULP -> TASKS
======================================================================== */
// Export tasks
exports.build = gulp.series(gulp.parallel(css, scripts));
exports.css = css;
exports.scripts = scripts;
exports.serve = gulp.series(gulp.parallel(watch, serve));
exports.watch = watch;