-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathgulp.config.js
215 lines (185 loc) · 4.86 KB
/
gulp.config.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
const { argv } = require('yargs');
const ENV = process.env.npm_lifecycle_event;
const isProd = ENV && ENV.startsWith('build');
module.exports = () => {
const DIST_DIR = 'dist';
const ROOT_DIR = './';
const SRC_DIR = argv.app || 'src';
const TMP_DIR = 'tmp/';
const ENVIRONMENT = argv.environment || 'dev';
// ENABLE/DISABLE FEATURES
const enable = {
pngFallback: false,
};
// PATHS
const clean = {
src: `${ROOT_DIR}${DIST_DIR}/**`,
};
const env = {
src: `config/${ENVIRONMENT}.js`,
};
const favicons = {
dist: `${DIST_DIR}/content/favicons/`,
src: `${SRC_DIR}/content/favicons/*`,
};
const html = {
dist: DIST_DIR,
src: [
`./${SRC_DIR}/**/*.html`,
],
};
const images = {
dist: `${DIST_DIR}/images/`,
src: `${SRC_DIR}/content/images/**/*.{png,gif,jpg,svg}`,
};
const scss = {
dist: `${DIST_DIR}/content/styles/`,
src: [
`./${SRC_DIR}/scss/**/*.scss`,
`./${SRC_DIR}/components/**/*.scss`,
`!./${SRC_DIR}/scss/**/*_scsslint_tmp*.scss`, // ignores temporary scss-lint files
],
};
const scssLint = {
src: [
...scss.src,
`!./${SRC_DIR}/scss/base/_svg-sprite-map.scss`,
`!./${SRC_DIR}/scss/base/_svg-sprite.scss`,
`!./${SRC_DIR}/scss/vendor/**/*.scss`,
],
};
const scripts = {
all: [
`${SRC_DIR}/components/**/*.js`,
`${SRC_DIR}/scripts/**/*.js`,
],
entry: `${SRC_DIR}/scripts/main.js`,
dist: DIST_DIR,
src: SRC_DIR,
};
const scriptsLint = {
src: [
`./${SRC_DIR}/**/*.js`,
],
};
const sprite = {
dist: `${DIST_DIR}/content/styles/images/`,
map: `${SRC_DIR}/scss/base/_svg-sprite-map.scss`,
src: `${SRC_DIR}/scss/assets/icons/*.svg`,
template: `${SRC_DIR}/scss/base/_svg-sprite-template.mustache`,
};
const paths = {
clean,
dist: DIST_DIR,
env,
favicons,
html,
images,
root: ROOT_DIR,
scss,
scssLint,
src: SRC_DIR,
scripts,
scriptsLint,
sprite,
tmp: TMP_DIR,
};
// OPTIONS
/*
* Reference: https://github.com/postcss/autoprefixer#options
* Browsers are defined in package.json browserslist key.
*/
const autoprefixer = {
cascade: false,
};
/* Reference: https://github.com/ben-eb/gulp-csso#options */
const csso = {};
/* Reference: https://github.com/jihchi/imagemin-giflossy#options */
const giflossy = {
lossy: 2,
optimizationLevel: 3,
optimize: 3,
};
/* Reference: https://github.com/imagemin/imagemin-jpegtran#options */
const jpegtran = {
progressive: true,
};
/* Reference: https://github.com/avevlad/gulp-connect#api */
const liveServer = {
livereload: true,
port: 8000,
root: DIST_DIR,
};
/* Reference: https://github.com/imagemin/imagemin-mozjpeg#options */
const mozjpeg = {
quality: 90,
};
/* Reference: https://github.com/imagemin/imagemin-pngquant#options */
const pngquant = {
quality: [0.9, 0.9],
speed: 1,
};
/* Reference: https://github.com/sass/node-sass#options */
const sass = {
includePaths: [TMP_DIR],
noCache: false,
outputStyle: 'expanded',
sourceMap: true,
};
/* Reference: https://github.com/svg/svgo#what-it-can-do */
const svgo = {
plugins: [{
removeViewBox: false,
}],
};
/* Reference: https://github.com/jkphl/svg-sprite#configuration-basics */
const svgSprite = {
shape: {
spacing: {
padding: 4,
},
},
variables: {
version: Math.round(+new Date() / 1000),
},
mode: {
css: {
bust: false,
dest: ROOT_DIR,
render: {
scss: {
dest: sprite.map,
template: sprite.template,
},
},
sprite: `${sprite.dist}sprite.svg`,
},
},
};
/* Reference: https://github.com/imagemin/imagemin-zopfli#options */
const zopfli = {
// iterations: 50, // very slow but more effective
more: true,
};
const options = {
autoprefixer,
csso,
giflossy,
jpegtran,
liveServer,
mozjpeg,
pngquant,
sass,
svgo,
svgSprite,
zopfli,
};
return {
enable,
options,
paths,
environmentConfig: {
source: `config/${ENVIRONMENT}.js`,
},
};
};