-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
40 lines (34 loc) · 1.05 KB
/
gulpfile.js
File metadata and controls
40 lines (34 loc) · 1.05 KB
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
/* eslint semi: "error" */
/* jshint node: true */
/* jshint esversion: 6 */
const {
parallel,
series,
watch
} = require('gulp');
const browserSync = require('browser-sync').create();
/**
* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
* ······· Server
* ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
**/
function serverHtml () {
browserSync.init({
port: 8888,
ui: false,
open: 'true',
server: {
baseDir: './gh-pages',
directory: false
}
});
}
exports.serve = serverHtml;
function reload (done) {
browserSync.reload();
done();
}
function watchFiles () {
watch('./**/*', series(reload));
}
exports.default = parallel(serverHtml, watchFiles);