forked from beabee-communityrm/beabee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
72 lines (63 loc) · 1.62 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
const autoprefixer = require("autoprefixer");
const gulp = require("gulp");
const postcss = require("gulp-postcss");
const sass = require("gulp-sass")(require("sass"));
const sourcemaps = require("gulp-sourcemaps");
const browserSync = require("browser-sync").create();
const paths = {
css: {
src: "./src/static/scss/**/*.scss",
dest: "./built/static/css"
},
staticFiles: {
src: ["./src/static/**/*", "!./src/static/scss/**/*"],
dest: "./built/static"
},
appFiles: {
src: ["./src/**/*.{json,pug,sql}"],
dest: "./built"
}
};
function buildCSS() {
return gulp
.src(paths.css.src)
.pipe(sourcemaps.init())
.pipe(sass().on("error", sass.logError))
.pipe(postcss([autoprefixer()]))
.pipe(sourcemaps.write("."))
.pipe(gulp.dest(paths.css.dest))
.pipe(browserSync.stream({ match: "./**/*.css" }));
}
function copyStaticFiles() {
return gulp
.src(paths.staticFiles.src, {
base: "./src/static",
since: gulp.lastRun(copyStaticFiles)
})
.pipe(gulp.dest(paths.staticFiles.dest));
}
function copyAppFiles() {
return gulp
.src(paths.appFiles.src, {
base: "./src",
since: gulp.lastRun(copyAppFiles)
})
.pipe(gulp.dest(paths.appFiles.dest));
}
const build = gulp.parallel(buildCSS, copyStaticFiles, copyAppFiles);
function watch() {
browserSync.init({
proxy: "http://localhost:3001",
ui: {
port: 4001
}
});
gulp.watch(paths.css.src, buildCSS);
gulp.watch(paths.staticFiles.src, copyStaticFiles);
gulp.watch(paths.appFiles.src, copyAppFiles);
}
module.exports = {
default: gulp.series(build, watch),
build,
watch
};