-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
270 lines (219 loc) · 6.71 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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
// Using modules
var os = require('os');
var gulp = require('gulp');
var gutil = require('gulp-util');
var runSequence = require('run-sequence');
var browserSync = require('browser-sync');
// Flags
var useLiveReload = gutil.env.lr || false,
useTunnelToWeb = gutil.env.tunnel || false,
// Configs
tarsConfig = require('./tars-config'),
browserSyncConfig = tarsConfig.browserSyncConfig,
templaterName = require('./tars/helpers/templater-name-setter')(),
templateExtension = 'jade',
cssPreprocExtension = tarsConfig.cssPreprocessor.toLowerCase(),
buildOptions = {},
watchOptions = {},
tasks = [],
userTasks= [],
watchers = [],
userWatchers = [];
// Generate build version
if (tarsConfig.useBuildVersioning) {
buildOptions.buildVersion = require('./tars/helpers/set-build-version')();
buildOptions.buildPath = tarsConfig.buildPath + 'build' + buildOptions.buildVersion + '/';
} else {
buildOptions.buildVersion = '';
buildOptions.buildPath = tarsConfig.buildPath;
}
// Set template's extension
if (templaterName === 'handlebars') {
templateExtension = 'html';
} else {
templateExtension = 'jade';
}
if (cssPreprocExtension === 'stylus') cssPreprocExtension = 'styl';
if (gutil.env.release) {
buildOptions.hash = Math.random().toString(36).substring(7);
} else {
buildOptions.hash = '';
}
watchOptions = {
cssPreprocExtension: cssPreprocExtension,
templateExtension: templateExtension
};
/***********/
/* HELPERS */
/***********/
// You can add your own helpers here. Helpers folder is tars/helpers
// Set ulimit to 4096 for *nix FS. It needs to work with big amount of files
if (os.platform() !== 'win32') require('./tars/helpers/set-ulimit')();
// Load files from dir recursively and synchronously
var fileLoader = require('./tars/helpers/file-loader');
/***************/
/* END HELPERS */
/***************/
/*********/
/* TASKS */
/*********/
// USER'S TASKS
// You can add your own task.
// Task have to be in tars/user-tasks folder
// Example:
// require('./tars/user-tasks/example-task')(buildOptions);
// SYSTEM TASKS
tasks = fileLoader('./tars/tasks');
// You could uncomment the row bellow, to see all required tasks in console
// console.log(tasks);
// require tasks
tasks.forEach(function(file) {
require(file)(buildOptions);
});
// USER'S TASKS
userTasks = fileLoader('./tars/user-tasks');
// require user-tasks
userTasks.forEach(function(file) {
require(file)(buildOptions);
});
/*************/
/* END TASKS */
/*************/
/***********/
/* WATCHERS */
/***********/
// Build dev-version with watchers and livereloader.
// Also could tunnel your markup to web, if you use flag --tunnel
gulp.task('dev', ['build-dev'], function() {
if (useLiveReload || useTunnelToWeb) {
gulp.start('browsersync');
}
// SYSTEM WATCHERS
watchers = fileLoader('./tars/watchers');
// You could uncomment the row bellow, to see all required watchers in console
// console.log(watchers);
// require watchers
watchers.forEach(function(file) {
require(file)(watchOptions);
});
// USER'S WATCHERS
userWatchers = fileLoader('./tars/user-watchers');
// require user-watchers
userWatchers.forEach(function(file) {
require(file)(watchOptions);
});
});
/****************/
/* END WATCHERS */
/****************/
/**************/
/* MAIN TASKS */
/**************/
// Build dev-version (without watchers)
// You can add your own tasks in queue
gulp.task('build-dev', function(cb) {
runSequence(
'service:builder-start-screen',
'service:clean',
['images:minify-svg', 'images:raster-svg'],
[
'css:make-sprite-for-svg', 'css:make-fallback-for-svg', 'css:make-sprite'
],
[
'css:compile-css', 'css:compile-css-for-ie8',
'html:concat-modules-data',
'js:move-separate', 'js:processing'
],
[
'html:compile-templates',
'other:move-misc-files', 'other:move-fonts', 'other:move-assets',
'images:move-content-img', 'images:move-plugins-img', 'images:move-general-img'
],
cb
);
});
// Build release version
// Also you can add your own tasks in queue of build task
gulp.task('build', function() {
runSequence(
'build-dev',
[
'html:minify-html', 'images:minify-raster-img'
],
'service:pre-build',
[
'js:compress', 'css:compress-css'
],
'service:zip-build',
function() {
console.log(gutil.colors.black.bold('\n------------------------------------------------------------'));
gutil.log(gutil.colors.green('✔'), gutil.colors.green.bold('Release version have been created successfully!'));
console.log(gutil.colors.black.bold('------------------------------------------------------------\n'));
}
);
});
// Default task. Just start build task
gulp.task('default', function() {
gulp.start('build');
});
// Init task. Just start init task
gulp.task('init', function() {
gulp.start('service:init');
});
// Re-init task. Just start re-init task
gulp.task('re-init', function() {
gulp.start('service:re-init');
});
// Update-deps task. Just start update-deps task
gulp.task('update-deps', function() {
gulp.start('service:update-deps');
});
// Task for starting browsersync module
gulp.task('browsersync', function(cb) {
// Serve files and connect browsers
browserSync({
server: {
baseDir: browserSyncConfig.baseDir
},
logConnections: true,
debugInfo: true,
injectChanges: false,
port: browserSyncConfig.port,
open: browserSyncConfig.open,
browser: browserSyncConfig.browser,
startPath: browserSyncConfig.startUrl,
notify: browserSyncConfig.useNotifyInBrowser,
tunnel: useTunnelToWeb
});
cb(null);
});
/******************/
/* END MAIN TASKS */
/******************/
/*****************/
/* HELPERS TASKS */
/*****************/
gulp.task('svg-actions', function(cb) {
if (gutil.env.ie8) {
runSequence(
['images:minify-svg', 'images:raster-svg'],
['css:make-fallback-for-svg', 'css:make-sprite-for-svg'],
cb
);
} else {
runSequence(
'images:minify-svg',
'css:make-sprite-for-svg',
cb
);
}
});
gulp.task('compile-templates-with-data-reloading', function(cb) {
runSequence(
'html:concat-modules-data',
'html:compile-templates',
cb);
});
/*********************/
/* END HELPERS TASKS */
/*********************/