-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
executable file
·174 lines (161 loc) · 4.05 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
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
"use strict";
const sass = require("gulp-sass")(require("sass"));
const gulp = require("gulp");
const postcss = require("gulp-postcss");
const tailwindcss = require("tailwindcss");
const gutil = require("gulp-util");
const jshint = require("gulp-jshint");
const fileinclude = require("gulp-file-include");
const bs = require("browser-sync").create();
const rimraf = require("rimraf");
const wrapper = require("gulp-wrapper");
const comments = require("gulp-header-comment");
const template = require("gulp-template");
const theme = require("./src/theme.json");
const node_env = process.argv.slice(2)[0];
const headerComments = `WEBSITE: https://themefisher.com
TWITTER: https://twitter.com/themefisher
FACEBOOK: https://facebook.com/themefisher
GITHUB: https://github.com/themefisher/`;
var path = {
// source paths
src: {
theme: "src/theme.json",
pages: "src/pages/*.html",
partials: "src/partials/**/*.html",
styles: "src/styles/*.scss",
scripts: "src/scripts/*.js",
plugins: "src/plugins/**/*",
public: "src/public/**/*",
},
// build paths
build: {
dir: "theme/",
},
};
// pages
gulp.task("pages", function () {
return gulp
.src(path.src.pages)
.pipe(
wrapper({
header:
"<!DOCTYPE html>\n<html lang=\"zxx\">\n@@include('head.html')\n<body>",
footer:
node_env === "dev"
? "@@include('components/tw-size-indicator.html')\n</body>\n</html>"
: "</body>\n</html>",
})
)
.pipe(
fileinclude({
basepath: "src/partials/",
})
)
.pipe(
template({
fontPrimary: theme.fonts.font_family.primary,
fontSecondary: theme.fonts.font_family.secondary,
})
)
.pipe(comments(headerComments))
.pipe(gulp.dest(path.build.dir))
.pipe(
bs.reload({
stream: true,
})
);
});
// styles
gulp.task("styles", function () {
return gulp
.src(path.src.styles)
.pipe(
sass({
outputStyle: "expanded",
}).on("error", sass.logError)
)
.pipe(
postcss([tailwindcss("./tailwind.config.js"), require("autoprefixer")])
)
.pipe(comments(headerComments))
.pipe(gulp.dest(path.build.dir + "styles/"))
.pipe(
bs.reload({
stream: true,
})
);
});
// scripts
gulp.task("scripts", function () {
return gulp
.src(path.src.scripts)
.pipe(jshint("./.jshintrc"))
.pipe(jshint.reporter("jshint-stylish"))
.on("error", gutil.log)
.pipe(comments(headerComments))
.pipe(gulp.dest(path.build.dir + "scripts/"))
.pipe(
bs.reload({
stream: true,
})
);
});
// Plugins
gulp.task("plugins", function () {
return gulp
.src(path.src.plugins)
.pipe(gulp.dest(path.build.dir + "plugins/"))
.pipe(
bs.reload({
stream: true,
})
);
});
// public files
gulp.task("public", function () {
return gulp.src(path.src.public).pipe(gulp.dest(path.build.dir));
});
// Clean Theme Folder
gulp.task("clean", function (cb) {
rimraf("./theme", cb);
});
// Watch Task
gulp.task("watch", function () {
gulp.watch(path.src.theme, gulp.parallel("styles"));
gulp.watch(path.src.pages, gulp.parallel("pages", "styles"));
gulp.watch(path.src.partials, gulp.parallel("pages", "styles"));
gulp.watch(path.src.scripts, gulp.parallel("scripts", "styles"));
gulp.watch(path.src.styles, gulp.parallel("styles"));
gulp.watch(path.src.plugins, gulp.parallel("plugins", "pages"));
gulp.watch(path.src.public, gulp.parallel("public", "pages"));
});
// dev Task
gulp.task(
"dev",
gulp.series(
"clean",
"pages",
"styles",
"scripts",
"plugins",
"public",
gulp.parallel("watch", function () {
bs.init({
server: {
baseDir: path.build.dir,
},
});
})
)
);
// Build Task
gulp.task(
"build",
gulp.series("clean", "pages", "styles", "scripts", "plugins", "public")
);
// Deploy Task
gulp.task(
"deploy",
gulp.series("pages", "styles", "scripts", "plugins", "public")
);