-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgulpfile.js
229 lines (196 loc) · 4.89 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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/**
* Settings
* Turn on/off build features
*/
var settings = {
clean: true,
scripts: false,
polyfills: true,
styles: true,
svgs: true,
copy: true,
reload: true,
};
/**
* Paths to project folders
*/
var paths = {
input: 'src/',
output: 'dist/',
scripts: {
input: 'src/js/*',
polyfills: '.polyfill.js',
output: 'dist/js/',
},
styles: {
input: 'src/scss/**/*.{scss,sass}',
output: 'dist/css/',
},
copyScss: {
input: 'src/scss/**/*.{scss,sass}',
output: 'dist/scss/',
},
svgs: {
input: 'src/svg/*.svg',
output: 'dist/svg/',
},
copy: {
input: 'src/copy/**/*',
output: 'dist/',
},
version: {
input: '{README.md,src/**/*.*}',
output: './',
},
reload: './dist/',
};
/**
* Template for banner to add to file headers
*/
var banner = {
main:
'/*!\n' +
' * <%= package.name %> v<%= package.version %> (<%= package.homepage %>)\n' +
' * Copyright ' +
new Date().getFullYear() +
' <%= package.author.name %>\n' +
' * Licensed under <%= package.license %>\n' +
' * <%= package.repository.url %>\n' +
' */\n' +
'/* stylelint-disable */\n',
};
/**
* Gulp Packages
*/
// General
var { src, dest, watch, series, parallel } = require('gulp');
var del = require('del');
var rename = require('gulp-rename');
var header = require('gulp-header');
var replace = require('gulp-replace');
var package = require('./package.json');
// Styles
var sass = require('gulp-sass');
var postcss = require('gulp-postcss');
var prefix = require('autoprefixer');
var minify = require('cssnano');
// SVGs
var svgmin = require('gulp-svgmin');
// BrowserSync
var browserSync = require('browser-sync');
// Version regexp
const packageVersionRegExp = /keyboard-css@([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?/g;
/**
* Gulp Tasks
*/
// Remove pre-existing content from output folders
var cleanDist = function (done) {
// Make sure this feature is activated before running
if (!settings.clean) return done();
// Clean the dist folder
del.sync([paths.output]);
// Signal completion
return done();
};
// Process, lint, and minify Sass files
var buildStyles = function (done) {
// Make sure this feature is activated before running
if (!settings.styles) return done();
// Run tasks on all Sass files
return src(paths.styles.input)
.pipe(
sass({
outputStyle: 'expanded',
sourceComments: true,
})
)
.pipe(
postcss([
prefix({
cascade: true,
remove: true,
}),
])
)
.pipe(header(banner.main, { package: package }))
.pipe(dest(paths.styles.output))
.pipe(rename({ suffix: '.min' }))
.pipe(
postcss([
minify({
discardComments: {
removeAll: true,
},
}),
])
)
.pipe(dest(paths.styles.output));
};
// Optimize SVG files
var buildSVGs = function (done) {
// Make sure this feature is activated before running
if (!settings.svgs) return done();
// Optimize SVG files
return src(paths.svgs.input).pipe(svgmin()).pipe(dest(paths.svgs.output));
};
// Copy static files into output folder
var copyFiles = function (done) {
// Make sure this feature is activated before running
if (!settings.copy) return done();
// Copy static files
return src(paths.copy.input)
.pipe(replace(packageVersionRegExp, `${package.name}@${package.version}`))
.pipe(dest(paths.copy.output));
};
// Copy static files into output folder
var copyScss = function (done) {
// Make sure this feature is activated before running
if (!settings.copy) return done();
// Copy static files
return src(paths.copyScss.input).pipe(dest(paths.copyScss.output));
};
// Update version in files
var updateVersion = function (done) {
// Make sure this feature is activated before running
if (!settings.copy) return done();
// Copy static files
return src(paths.version.input)
.pipe(replace(packageVersionRegExp, `${package.name}@${package.version}`))
.pipe(dest(paths.version.output));
};
// Watch for changes to the src directory
var startServer = function (done) {
// Make sure this feature is activated before running
if (!settings.reload) return done();
// Initialize BrowserSync
browserSync.init({
server: {
baseDir: paths.reload,
},
});
// Signal completion
done();
};
// Reload the browser when files change
var reloadBrowser = function (done) {
if (!settings.reload) return done();
browserSync.reload();
done();
};
// Watch for changes
var watchSource = function (done) {
watch(paths.input, series(exports.default, reloadBrowser));
done();
};
/**
* Export Tasks
*/
// Default task
// gulp
exports.default = series(
cleanDist,
parallel(buildStyles, buildSVGs, updateVersion, copyFiles, copyScss)
);
// Watch and reload
// gulp watch
exports.watch = series(exports.default, startServer, watchSource);