forked from fabiandev/angular-quiz-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
389 lines (342 loc) · 9.32 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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
/*
|--------------------------------------------------------------------------
| Dependencies
|--------------------------------------------------------------------------
|
| Below you can add all files and plugins you need within
| your tasks.
|
*/
var gulp = require('gulp');
var gulpSequence = require('gulp-sequence');
var gulpif = require('gulp-if');
var tslint = require('gulp-tslint');
var less = require('gulp-less');
var cleanCSS = require('gulp-clean-css');
var concat = require('gulp-concat');
var filter = require('gulp-filter');
var sourcemaps = require('gulp-sourcemaps');
var preprocess = require('gulp-preprocess');
var rename = require('gulp-rename');
var pp = require('preprocess');
var argv = require('yargs').argv;
var del = require('del');
var exec = require('node-exec-promise').exec;
var log = require('fancy-log');
var colors = require('ansi-colors');
var notifier = require('node-notifier');
var path = require('path');
/*
|--------------------------------------------------------------------------
| Global Definitions
|--------------------------------------------------------------------------
|
| All configurations can be defined in config.js. The environment
| will be set automatically and can be changed by using either
| "gulp build" or "gulp dev-build".
|
| Also all other global definitions go here, like defining the
| typescript project.
|
*/
var config = require('./config');
config.env = process.env.NODE_ENV;
config.mode = config.env !== 'production' ? 'bundle' : 'build';
config.build = true;
// Determine environment before it is set for initialization
process.env.NODE_ENV = config.env =
argv._[0] === 'build' ? 'production' : 'development';
/*
|--------------------------------------------------------------------------
| Internal Tasks
|--------------------------------------------------------------------------
|
| Tasks are defined below, that are used internally:
|
| - clean:*
| Deletes the specific files, based on the clean task.
|
| - builder/jspm
| Builds and bundles the application via SystemJS.
|
| - less
| Compiles less files and saves it into the distribution
| folder.
|
| - copy:*
| Copies files according to the task name.
|
| - bundle:*
| Bundles files according to the task name.
|
| - lint:*
| Lints specific types of files.
|
*/
gulp.task('clean:all', function() {
return del([path.normalize(path.join(config.dist, '**/*'))]);
});
gulp.task('clean:scripts', function() {
return del([
path.normalize(path.join(config.dist, 'js/**/*.js')),
path.normalize(path.join(config.dist, 'js/**/*.map'))
]);
});
gulp.task('clean:vendor', function() {
return del([path.normalize(path.join(config.vendor.dest, '**/*'))]);
});
gulp.task('clean:styles', function() {
return del([
path.normalize(path.join(config.dist, 'css/**/*.css')),
path.normalize(path.join(config.dist, 'css/**/*.map'))
]);
});
gulp.task('clean:index', function() {
return del([path.normalize(path.join(config.dist, 'index.html'))]);
});
gulp.task('clean:html', function() {
return del([path.normalize(path.join(config.dist, '**/*.html'))]);
});
gulp.task('clean:assets', function() {
return del([path.normalize(path.join(config.dist, 'assets/**/*'))]);
});
gulp.task('jspm', function(done) {
var bundles = [];
config.jspm.bundles.forEach(function(bundle) {
var command =
config.env !== 'production' ? bundle.devOptions : bundle.options;
command = command.slice(0);
command.unshift('node_modules/.bin/jspm');
bundles.push(exec(command.join(' ')));
});
Promise.all(bundles).then(
function(values) {
var file = path.join(config.dist, 'js/app.js');
var context = { config: config };
var options = { type: 'js' };
pp.preprocessFile(file, file, context, done, options);
},
function(error) {
onError('Error bundling with jspm.', error);
}
);
});
gulp.task('less', function() {
return gulp
.src(config.less.src)
.pipe(
gulpif(
config.env !== 'production',
sourcemaps.init().on('error', onError)
)
)
.pipe(less().on('error', onError))
.pipe(cleanCSS().on('error', onError))
.pipe(rename(config.less.name).on('error', onError))
.pipe(
gulpif(
config.env !== 'production',
sourcemaps.write('./').on('error', onError)
)
)
.pipe(gulp.dest(config.less.dest))
.on('error', onError);
});
gulp.task('copy:index', function() {
return gulp
.src(config.index.src)
.pipe(
preprocess({
context: {
config: config
}
}).on('error', onError)
)
.pipe(rename(config.index.name).on('error', onError))
.pipe(gulp.dest(config.index.dest))
.on('error', onError);
});
gulp.task('copy:assets', function() {
return gulp
.src(config.assets.src)
.pipe(gulp.dest(config.assets.dest))
.on('error', onError);
});
var copyTasks = [];
function createCopyTask(element, index) {
var name = 'copy:originals:' + index;
var sources = [];
element.src.forEach(function(p) {
sources.push(path.join(element.base, p));
});
gulp.task(name, function() {
return gulp
.src(sources)
.pipe(gulp.dest(element.dest), { base: element.base })
.on('error', onError);
});
copyTasks.push(name);
}
clone(config.copy).forEach(function(element, index) {
createCopyTask(element, index);
});
gulp.task('copy:originals', function(done) {
return gulpSequence(clone(copyTasks))(done);
});
gulp.task('lint:ts', function() {
return gulp
.src([config.tslint.src])
.pipe(
tslint({
formatter: 'stylish'
})
)
.pipe(tslint.report())
.on('error', notifyError);
});
/*
|--------------------------------------------------------------------------
| Helper Tasks
|--------------------------------------------------------------------------
|
| The following tasks are used as helpers.
|
*/
gulp.task('set-dev', function() {
return (process.env.NODE_ENV = config.env = 'development');
});
gulp.task('set-prod', function() {
return (process.env.NODE_ENV = config.env = 'production');
});
gulp.task('start', function(done) {
log(colors.green('Starting ' + config.env + ' build...'));
return done();
});
gulp.task('finish', function(done) {
log(colors.green('Build has finished.'));
notifier.notify({
title: 'Build Successful',
message: 'All build tasks have finished and your app is ready.'
});
return done();
});
/*
|--------------------------------------------------------------------------
| Helper Functions
|--------------------------------------------------------------------------
|
| Simple functions for different purposes.
|
*/
function onError(error, details) {
log(colors.red('Error: ' + error));
if (details) {
log(details);
}
notifyError(error);
}
function notifyError(error) {
notifier.notify({
title: 'Error',
message: 'There was an error building your app.'
});
}
function clone(obj) {
return JSON.parse(JSON.stringify(obj));
}
/*
|--------------------------------------------------------------------------
| Task Collections
|--------------------------------------------------------------------------
|
| The tasks below bundle common sequences:
|
| - tasks
| The main task sequence.
|
| - copy
| Should bundle all tasks prefixed with "copy:".
|
| - clean:default
| Only clear scripts (excluding vendor), styles and the index.
|
| - bundle
| Execute all available bundle tasks.
|
| - lint
| Run all available lint tasks.
|
| - typescript
| Runs all required typescript tasks.
|
*/
gulp.task('master', function(done) {
return gulpSequence('lint', 'clean:all', ['tasks', 'jspm'])(done);
});
gulp.task('tasks', function(done) {
return gulpSequence(['copy', 'less'])(done);
});
gulp.task('copy', function(done) {
return gulpSequence(['copy:index', 'copy:assets', 'copy:originals'])(done);
});
gulp.task('clean:default', function(done) {
return gulpSequence(['clean:scripts', 'clean:styles', 'clean:index'])(done);
});
gulp.task('lint', function(done) {
return gulpSequence(['lint:ts'])(done);
});
/*
|--------------------------------------------------------------------------
| Main Tasks
|--------------------------------------------------------------------------
|
| These tasks are intended to be called via the console:
|
| - build
| Performs a production build.
|
| - dev-build
| Performs a development build.
| A dev build performs the same tasks as
| a prod build, but with the env set to
| dev, which may result in different
| behaviors in tasks.
|
| - watch-build
| Tasks that should run if a file changes.
|
| - watch
| Performs a development build everytime
| something has changes.
|
| - serve
| Brings up a server, to test the app
| locally.
|
*/
gulp.task('default', ['build']);
gulp.task('build', function(done) {
return gulpSequence('set-prod', 'start', 'master', 'finish')(done);
});
gulp.task('dev-build', function(done) {
return gulpSequence('set-dev', 'start', 'master', 'finish')(done);
});
gulp.task('watch-build', function(done) {
return gulpSequence(
'set-dev',
'start',
'lint',
'clean:default',
['tasks'],
'finish'
)(done);
});
gulp.task('watch', function() {
gulpSequence('watch-build')(function() {
gulp.watch(config.watch, ['watch-build']);
});
});
gulp.task('serve', function(done) {
log(colors.blue('Use "npm start [dev]" instead.'));
done();
});