mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 21:13:26 +00:00
20 lines
427 B
JavaScript
20 lines
427 B
JavaScript
var gutil = require("gulp-util");
|
|
var configPaths = {
|
|
src: 'resources/www/',
|
|
vendors: 'tmp-assets/',
|
|
distVendors: 'www/assets/', //@deprecated
|
|
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');
|
|
};
|
|
};
|