mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-14 13:33:14 +00:00
19 lines
391 B
JavaScript
19 lines
391 B
JavaScript
var gutil = require("gulp-util");
|
|
var configPaths = {
|
|
src: 'resources/www/',
|
|
vendors: 'www/bower_components/',
|
|
build: 'www/assets/',
|
|
dist: 'www/'
|
|
};
|
|
|
|
exports.paths = configPaths;
|
|
|
|
exports.errorHandler = function(title) {
|
|
'use strict';
|
|
|
|
return function(err) {
|
|
gutil.log(gutil.colors.red('[' + title + ']'), err.toString());
|
|
this.emit('end');
|
|
};
|
|
};
|