-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathgulpfile.babel.js
184 lines (171 loc) · 4.1 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
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
"use strict";
// Load plugins
const autoprefixer = require("gulp-autoprefixer");
const browsersync = require("browser-sync").create();
const cleanCSS = require("gulp-clean-css");
const del = require("del");
const gulp = require("gulp");
const header = require("gulp-header");
const merge = require("merge-stream");
const plumber = require("gulp-plumber");
const rename = require("gulp-rename");
const sass = require("gulp-sass")(require("sass"));
const uglify = require("gulp-uglify");
const babel = require("gulp-babel");
const concat = require("gulp-concat");
// Load package.json for banner
const pkg = require("./package.json");
// Set the banner content
const banner = [
"/*!\n",
" * Start Bootstrap - <%= pkg.title %> v<%= pkg.version %> (<%= pkg.homepage %>)\n",
" * Copyright 2013-" + new Date().getFullYear(),
" <%= pkg.author %>\n",
" * Licensed under <%= pkg.license %> (https://github.com/BlackrockDigital/<%= pkg.name %>/blob/master/LICENSE)\n",
" */\n",
"\n",
].join("");
// BrowserSync
function browserSync(done) {
browsersync.init({
server: {
baseDir: "./",
},
port: 3000,
});
done();
}
// BrowserSync reload
function browserSyncReload(done) {
browsersync.reload();
done();
}
// Clean vendor
function clean() {
return del(["./vendor/"]);
}
// Bring third party dependencies from node_modules into vendor directory
function modules() {
// Bootstrap
var bootstrap = gulp
.src("./node_modules/bootstrap/dist/**/*")
.pipe(gulp.dest("./vendor/bootstrap"));
// Font Awesome CSS
var fontAwesomeCSS = gulp
.src("./node_modules/@fortawesome/fontawesome-free/css/**/*")
.pipe(gulp.dest("./vendor/fontawesome-free/css"));
// Font Awesome Webfonts
var fontAwesomeWebfonts = gulp
.src("./node_modules/@fortawesome/fontawesome-free/webfonts/**/*")
.pipe(gulp.dest("./vendor/fontawesome-free/webfonts"));
// jQuery Easing
var jqueryEasing = gulp
.src("./node_modules/jquery.easing/*.js")
.pipe(gulp.dest("./vendor/jquery-easing"));
// jQuery
var jquery = gulp
.src([
"./node_modules/jquery/dist/*",
"!./node_modules/jquery/dist/core.js",
])
.pipe(gulp.dest("./vendor/jquery"));
return merge(
bootstrap,
fontAwesomeCSS,
fontAwesomeWebfonts,
jquery,
jqueryEasing
);
}
// CSS task
function css() {
return gulp
.src("./scss/**/*.scss")
.pipe(plumber())
.pipe(
sass({
outputStyle: "expanded",
includePaths: "./node_modules",
})
)
.on("error", sass.logError)
.pipe(
autoprefixer({
cascade: false,
})
)
.pipe(
header(banner, {
pkg: pkg,
})
)
.pipe(gulp.dest("./css"))
.pipe(
rename({
suffix: ".min",
})
)
.pipe(cleanCSS())
.pipe(gulp.dest("./css"))
.pipe(browsersync.stream());
}
function html() {
return gulp
.src([
"html/_head.html",
"html/_home.html",
"html/_compute.html",
"html/_publish.html",
"html/_learn.html",
"html/_act.html",
"html/_about.html",
"html/_authors.html",
"html/_foot.html",
])
.pipe(concat("index.html"))
.pipe(gulp.dest("./"));
}
// JS task
function js() {
return gulp
.src(["./js/*.js", "!./js/*.min.js"])
.pipe(
babel({
presets: ["@babel/preset-env"],
})
)
.pipe(uglify())
.pipe(
header(banner, {
pkg: pkg,
})
)
.pipe(
rename({
suffix: ".min",
})
)
.pipe(gulp.dest("./js"))
.pipe(browsersync.stream());
}
// Watch files
function watchFiles() {
gulp.watch("./scss/**/*", css);
gulp.watch(["./js/**/*", "!./js/**/*.min.js"], js);
gulp.watch("./html/*.html", (done) => {
browserSyncReload(done);
html();
});
}
// Define complex tasks
const vendor = gulp.series(clean, modules);
const build = gulp.series(vendor, gulp.parallel(css, js, html));
const watch = gulp.series(build, gulp.parallel(watchFiles, browserSync));
// Export tasks
exports.css = css;
exports.js = js;
exports.clean = clean;
exports.vendor = vendor;
exports.build = build;
exports.watch = watch;
exports.default = build;