-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
53 lines (46 loc) · 1.29 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
const gulp = require("gulp");
const browserSync = require("browser-sync").create();
const sass = require("gulp-sass");
// Compile Sass & Inject Into Browser
gulp.task("sass", function() {
return gulp
.src(["node_modules/bootstrap/scss/bootstrap.scss", "./scss/*.scss"])
.pipe(sass())
.pipe(gulp.dest("css"))
.pipe(browserSync.stream());
});
// Move JS Files to /js
gulp.task("js", function() {
return gulp
.src([
"node_modules/bootstrap/dist/js/bootstrap.min.js",
"node_modules/jquery/dist/jquery.min.js",
"node_modules/popper.js/dist/umd/popper.min.js"
])
.pipe(gulp.dest("js"))
.pipe(browserSync.stream());
});
// Watch Sass & Serve
gulp.task("serve", ["sass"], function() {
browserSync.init({
server: "./"
});
gulp.watch(
["node_modules/bootstrap/scss/bootstrap.scss", "docs/scss/*.scss"],
["sass"]
);
gulp.watch("/*.html").on("change", browserSync.reload);
});
// Move Fonts to /fonts
gulp.task("fonts", function() {
return gulp
.src("node_modules/font-awesome/fonts/*")
.pipe(gulp.dest("fonts"));
});
// Move Font Awesome CSS to /css
gulp.task("fa", function() {
return gulp
.src("node_modules/font-awesome/css/font-awesome.min.css")
.pipe(gulp.dest("css"));
});
gulp.task("default", ["js", "serve", "fa", "fonts"]);