-
Notifications
You must be signed in to change notification settings - Fork 90
/
gulpfile.js
166 lines (149 loc) · 4.18 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
/*
=========================================================
* Dash UI - Bootstrap 5 Admin & Dashboard Theme
=========================================================
* Product Page: https://codescandy.com/dashui/index.html
* Copyright 2020 Codescandy (https://codescandy.com/)
* Designed and coded by https://codescandy.com
========================================================= */
// Load plugins
const { src, dest, watch, parallel, series } = require('gulp');
const sass = require('gulp-sass')(require('sass'));
const gulpautoprefixer = require('gulp-autoprefixer');
const browsersync = require('browser-sync').create();
const fileinclude = require('gulp-file-include');
const useref = require('gulp-useref');
const cached = require('gulp-cached');
const gulpIf = require('gulp-if');
const del = require('del');
const npmDist = require('gulp-npm-dist');
const postcss = require('gulp-postcss');
const cssnano = require('cssnano');
const autoprefixer = require('autoprefixer');
const replace = require('gulp-replace');
const terser = require('gulp-terser');
// Paths to project folders
const paths = {
base: {
base: './',
node: './node_modules',
},
src: {
basesrc: './src',
basesrcfiles: './src/**/*',
scss: './src/assets/scss/**/*.scss',
css: './src/assets/css',
js: './src/assets/js/**/*.js',
html: './src/**/*.html',
images: './src/assets/images/**/*',
fonts: './src/assets/fonts/**/*',
assets: './src/assets/**/*',
partials: '.src/partials/**/*',
},
temp: {
basetemp: './.temp',
},
dist: {
basedist: './dist',
js: './dist/assets/js',
images: './dist/assets/images',
css: './dist/assets/css',
fonts: './dist/assets/fonts',
libs: './dist/assets/libs',
},
};
// SCSS to CSS
function scss(callback) {
return src(paths.src.scss).pipe(sass().on('error', sass.logError)).pipe(gulpautoprefixer()).pipe(dest(paths.src.css)).pipe(browsersync.stream());
callback();
}
// Image
function images(callback) {
return src(paths.src.images).pipe(dest(paths.dist.images));
callback();
}
// Font task
function fonts(callback) {
return src(paths.src.fonts).pipe(dest(paths.dist.fonts));
callback();
}
// HTML
function html(callback) {
return src([paths.src.html, '!./src/partials/**/*'])
.pipe(
fileinclude({
prefix: '@@',
basepath: '@file',
})
)
.pipe(replace(/src="(.{0,10})node_modules/g, 'src="$1assets/libs'))
.pipe(replace(/href="(.{0,10})node_modules/g, 'href="$1assets/libs'))
.pipe(useref())
.pipe(cached())
.pipe(gulpIf('*.css', postcss([autoprefixer(), cssnano()]))) // PostCSS plugins with cssnano
.pipe(gulpIf('*.js', terser()))
.pipe(dest(paths.dist.basedist))
.pipe(browsersync.stream());
callback();
}
// File include task for temp
function fileincludeTask(callback) {
return src([paths.src.html, '!./src/partials/**/*'])
.pipe(
fileinclude({
prefix: '@@',
basepath: '@file',
})
)
.pipe(cached())
.pipe(dest(paths.temp.basetemp));
callback();
}
// Copy libs file from nodemodules to dist
function copyLibs(callback) {
return src(npmDist(), { base: paths.base.node }).pipe(dest(paths.dist.libs));
callback();
}
// Clean .temp folder
function cleanTemp(callback) {
del.sync(paths.temp.basetemp);
callback();
}
// Clean Dist folder
function cleanDist(callback) {
del.sync(paths.dist.basedist);
callback();
}
// Browser Sync Serve
function browsersyncServe(callback) {
browsersync.init({
server: {
baseDir: [paths.temp.basetemp, paths.src.basesrc, paths.base.base],
},
});
callback();
}
// SyncReload
function syncReload(callback) {
browsersync.reload();
callback();
}
// Watch Task
function watchTask() {
watch(paths.src.html, series(fileincludeTask, syncReload));
watch([paths.src.images, paths.src.fonts], series(images, fonts));
watch([paths.src.scss], series(scss, syncReload));
}
// Default Task Preview
exports.default = series(fileincludeTask, browsersyncServe, watchTask);
// Build Task for Dist
exports.build = series(parallel(cleanDist), html, images, fonts, copyLibs, cleanTemp);
// export tasks
exports.scss = scss;
exports.images = images;
exports.fonts = fonts;
exports.html = html;
exports.fileincludeTask = fileincludeTask;
exports.copyLibs = copyLibs;
exports.cleanTemp = cleanTemp;
exports.cleanDist = cleanDist;