-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
70 lines (61 loc) · 1.32 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
const gulp = require('gulp');
const browserSync = require('browser-sync').create();
const rollup = require('gulp-better-rollup');
const {terser} = require('rollup-plugin-terser');
const del = require('del');
const ghpages = require('gh-pages');
const config = {
src: './src',
build: './build'
};
const copy = () => {
return gulp.src([
`${config.src}/style/**/*`,
`${config.src}/index.html`,
], {
base: config.src
})
.pipe(gulp.dest(config.build));
};
const js = () => {
return gulp.src(`${config.src}/js/index.js`)
.pipe(rollup(
{
plugins: [terser()]
},
{
format: 'iife',
file: 'bundle.js'
}))
.pipe(gulp.dest(config.build));
};
const clean = () => {
return del(config.build);
};
const bundle = async () => {
return gulp.series(
clean,
gulp.parallel(copy, js)
)();
};
const sync = () => {
browserSync.init({
server: config.build,
notify: false,
open: true,
cors: true,
ui: false
});
gulp.watch(`${config.src}/js/**/*.js`, gulp.series(bundle));
gulp.watch(`${config.src}/**/*.{html,css}`, gulp.series(bundle));
gulp.watch(`${config.src}/**/*.*`).on('change', browserSync.reload);
};
const publish = () => {
return ghpages.publish('./build', function (err) {
});
};
module.exports = {
sync,
bundle,
publish
};