blob: 730290da5cdea156b25815766bbb0183b391914b [file] [log] [blame]
Matteo Scandolod819c922016-12-02 14:06:14 -08001'use strict';
2
3/**
4 * This file contains the variables used in other gulp files
5 * which defines tasks
6 * By design, we only put there very generic config values
7 * which are used in several places to keep good readability
8 * of the tasks
9 */
10
11const path = require('path');
12const gutil = require('gulp-util');
13
Matteo Scandolof6acdbe2016-12-13 10:29:37 -080014exports.ngModule = 'app';
15
Matteo Scandolod819c922016-12-02 14:06:14 -080016/**
17 * The main paths of your project handle these with care
18 */
19exports.paths = {
20 src: 'src',
21 dist: 'dist',
Matteo Scandolo43ffb672016-12-02 14:49:58 -080022 appConfig: 'conf/app',
Matteo Scandolod819c922016-12-02 14:06:14 -080023 tmp: '.tmp',
24 e2e: 'e2e',
25 tasks: 'gulp_tasks'
26};
27
28exports.path = {};
29for (const pathName in exports.paths) {
30 if (exports.paths.hasOwnProperty(pathName)) {
31 exports.path[pathName] = function pathJoin() {
32 const pathValue = exports.paths[pathName];
33 const funcArgs = Array.prototype.slice.call(arguments);
34 const joinArgs = [pathValue].concat(funcArgs);
35 return path.join.apply(this, joinArgs);
36 };
37 }
38}
39
40/**
41 * Common implementation for an error handler of a Gulp plugin
42 */
43exports.errorHandler = function (title) {
44 return function (err) {
45 gutil.log(gutil.colors.red(`[${title}]`), err.toString());
46 this.emit('end');
47 };
48};